-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.71 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "preen"
version = "0.1.0"
description = "An opinionated, agentic CLI for Python package hygiene and release"
authors = [
{ name = "Gaurav Sood", email = "contact@gsood.com" },
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"typer>=0.9",
"rich>=13.5",
"PyYAML>=6.0",
"Jinja2>=3.0",
"httpx>=0.24.0",
"pydoclint>=0.3.0",
"pyright>=1.1.350",
"codespell>=2.3.0",
"ruff>=0.14.0",
]
keywords = ["packaging", "release", "metadata", "hygiene", "cli", "python"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/gojiplus/preen"
"Repository" = "https://github.com/gojiplus/preen"
"Documentation" = "https://gojiplus.github.io/preen"
"Bug Tracker" = "https://github.com/gojiplus/preen/issues"
"Changelog" = "https://github.com/gojiplus/preen/releases"
[project.scripts]
preen = "preen.cli:run"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"myst-parser>=2.0",
"furo>=2024.0",
]
[tool.setuptools.packages.find]
include = ["preen", "preen.*"]
[tool.uv]
python-preference = "managed"
[tool.pytest.ini_options]
addopts = "-q"