-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (37 loc) · 937 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "sachi"
dynamic = ["version"]
description = "Terminal media files renamer (FileBot alternative)"
readme = "README.md"
license = "MIT"
authors = [{ name = "NextFire", email = "[email protected]" }]
requires-python = ">=3.12"
dependencies = [
"typer==0.15.1",
"textual==1.0.0",
"tomlkit==0.13.2",
"pydantic==2.10.6",
"aiohttp[speedups]==3.11.11",
"yarl==1.18.3",
"backoff==2.2.1",
"jinja2==3.1.5",
"pymediainfo==6.1.0",
"guessit==3.8.0",
# guessit requirement
"setuptools==75.8.0",
]
[dependency-groups]
dev = ["pyright==1.1.393", "ruff==0.9.4", "textual-dev==1.7.0"]
[project.scripts]
sachi = "sachi:cli_app"
[project.urls]
homepage = "https://github.com/NextFire/sachi"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pyright]
pythonVersion = "3.12"
[tool.ruff.lint]
extend-select = ["I"]