-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·87 lines (75 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
executable file
·87 lines (75 loc) · 1.95 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "trove-setup"
description = "Simple TUI for setting up trove classifiers"
authors = [{ name = "Jan Vollmer", email = "jan@vllmr.dev" }]
dependencies = [
"textual>=7.5.0",
"trove-classifiers>=2026.1.14.14",
"typer>=0.21.1",
"tomlkit>=0.14.0",
"jmespath>=1.1.0",
"rich>=14.3.2",
"packaging>=26.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
keywords = ["trove", "classifier", "pypi", "package"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/jvllmr/trove-setup"
[project.scripts]
trove_setup = "trove_setup.cli:run_typer"
trove-setup = "trove_setup.cli:run_typer"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pycln]
all = true
[tool.mypy]
python_version = "3.10"
strict = true
files = ["src/trove_setup"]
exclude = ["tests"]
[tool.pdm]
plugins = ["sync-pre-commit-lock"]
[tool.pdm.version]
source = "scm"
[tool.pdm.scripts]
dev = "textual run trove_setup.app:TroveSetupApp --dev"
console = "textual console"
test = "pytest -x -n auto"
update-snapshots = "pytest -x -n auto --snapshot-update"
[tool.pdm.dev-dependencies]
dev = [
"mypy>=1.19.1",
"ruff>=0.14.14",
"pytest>=8.4.2",
"isort>=7.0.0",
"pycln>=2.6.0",
"pyaphid>=0.3.1",
"pre-commit>=4.5.1",
"nox>=2025.11.12",
"textual-dev>=1.8.0",
"pytest-textual-snapshot>=1.1.0",
"types-jmespath>=1.1.0.20260124",
"tomli>=2.4.0",
"pytest-xdist>=3.8.0",
"pytest-asyncio>=1.3.0",
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"