-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·80 lines (71 loc) · 1.79 KB
/
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
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
[project]
name = "trove-setup"
version = "1.0.0"
description = "Simple TUI for setting up trove classifiers"
authors = [{ name = "Jan Vollmer", email = "jan@vllmr.dev" }]
dependencies = [
"textual>=0.59.0",
"trove-classifiers>=2024.1.31",
"typer>=0.12.0",
"tomlkit>=0.12.3",
"jmespath>=1.0.1",
"rich>=13.7.1",
"packaging>=24.0",
]
requires-python = ">=3.9"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
keywords = ["trove", "classifier", "pypi", "package"]
[project.urls]
Repository = "https://github.com/jvllmr/trove-setup"
[project.scripts]
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.9"
strict = true
files = ["src/trove_setup"]
exclude = ["tests"]
[tool.pdm]
ignore_package_warnings = ["pre-commit"]
plugins = ["sync-pre-commit-lock"]
[tool.pdm.scripts]
dev = "textual run trove_setup.app:TroveSetupApp --dev"
console = "textual console"
test = "pytest -n auto"
[tool.pdm.dev-dependencies]
dev = [
"mypy>=1.7.1",
"ruff>=0.1.8",
"pytest>=7.4.3",
"isort>=5.13.1",
"pycln>=2.4.0",
"pyaphid>=0.3.1",
"pre-commit>=3.5.0",
"nox>=2023.4.22",
"textual-dev>=1.4.0",
"pytest-textual-snapshot>=0.4.0",
"types-jmespath>=1.0.2.20240106",
"tomli>=2.0.1",
"pytest-xdist>=3.5.0",
"pytest-asyncio>=0.23.6",
]
[tool.isort]
profile = "black"
[tool.nox]