-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (78 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
89 lines (78 loc) · 2.1 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
88
89
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "releasepilot"
version = "1.1.0"
description = "Production-grade release notes and release communication tool"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.12"
authors = [{name = "ReleasePilot Contributors"}]
keywords = ["release-notes", "changelog", "git", "automation", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Typing :: Typed",
]
dependencies = [
"click>=8.1",
"rich>=13.0",
"questionary>=2.0",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"jinja2>=3.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"httpx>=0.27",
"ruff>=0.4",
]
export = [
"reportlab>=4.0",
"python-docx>=1.0",
]
translate = [
"deep-translator>=1.11",
]
all = [
"releasepilot[dev,export,translate]",
]
[project.scripts]
releasepilot = "releasepilot.cli.app:main"
[project.urls]
Homepage = "https://polprog.pl/apps/ReleasePilot"
Repository = "https://github.com/polprog-tech/ReleasePilot"
Issues = "https://github.com/polprog-tech/ReleasePilot/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
releasepilot = ["dashboard/templates/*.j2"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["N801", "SIM117"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"asyncio: mark test as async (auto-detected by pytest-asyncio)",
]
[tool.coverage.run]
source = ["releasepilot"]
omit = ["tests/*"]