-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.98 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
[project]
name = "afterpython"
version = "0.2.1"
description = "CLI tool to streamline Python package maintenance and generate a dedicated project website"
license = "Apache-2.0"
authors = [
{ name = "Stephen Yau", email = "softwareentrepreneer+afterpython@gmail.com" },
]
readme = "README.md"
keywords = [
"package-maintenance",
"project-website",
"static-site-generator",
"developer-tools",
"documentation",
"cli-tool",
"ci/cd",
"mystmd",
"semantic-release",
"python-packaging",
]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Documentation",
"Typing :: Typed",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
# "Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11"
dependencies = [
"click>=8.2.1",
"trogon>=0.6.0",
"httpx>=0.28.1",
"tomlkit>=0.13.3",
"ruamel-yaml>=0.18.16",
"gitpython>=3.1.45",
# "pygithub>=2.8.1",
"python-dotenv>=1.2.1",
"pyproject-metadata>=0.10.0",
# "jupytext>=1.18.1",
# "jinja2>=3.1.6",
"mystmd>=1.8.0",
"pdoc>=16.0.0",
"ruff>=0.14.14",
"pre-commit>=4.5.1",
"commitizen>=4.12.1",
# "python-semantic-release>=10.5.2",
]
[dependency-groups]
dev = [
"afterpython>=0.2.1",
]
[project.urls]
homepage = "https://afterpython.afterpython.org"
repository = "https://github.com/AfterPythonOrg/afterpython"
documentation = "https://afterpython.afterpython.org/doc"
[project.scripts]
ap = "afterpython.main:run_cli"
pcu = "afterpython.main:run_pcu"
# [tool.uv]
# override-dependencies = ["platformdirs>=4.5.0", "nodeenv>=1.9.1"]
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "afterpython"
module-root = "src"
[tool.uv.sources]
afterpython = { workspace = true }