mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-03-13 23:58:41 +00:00
feat: migrate to uv-managed project (#10)
* Initial plan * feat: migrate to uv-managed project Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> * fix: align Python version in pyproject.toml and CI setup-uv config Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>
This commit is contained in:
@@ -1,10 +1,25 @@
|
||||
[project]
|
||||
name = "aeonview"
|
||||
version = "0.1.0"
|
||||
description = "A simple timelapse tool using ffmpeg and Python"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13.2"
|
||||
license = { text = "MIT" }
|
||||
authors = [{ name = "Ismo Vuorinen" }]
|
||||
dependencies = ["requests>=2.32.3"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pre-commit>=3.5.0",
|
||||
"pytest>=8.0.0",
|
||||
"pytest-cov>=4.1.0",
|
||||
"ruff>=0.3.3",
|
||||
]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 80
|
||||
target-version = "py313"
|
||||
|
||||
[project]
|
||||
requires-python = ">=3.13.2"
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["E", "F", "I", "B", "UP", "C4", "T20"]
|
||||
ignore = ["E501"]
|
||||
|
||||
Reference in New Issue
Block a user