-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.87 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "keepachangelog"
description = "Manipulate keep a changelog files"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Colin Bounouar", email = "[email protected]" }
]
maintainers = [
{name = "Colin Bounouar", email = "[email protected]" }
]
keywords = ["changelog", "CHANGELOG.md", "markdown"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
]
dependencies = []
dynamic = ["version"]
[project.urls]
documentation = "https://colin-b.github.io/keepachangelog/"
repository = "https://github.com/Colin-b/keepachangelog"
changelog = "https://github.com/Colin-b/keepachangelog/blob/master/CHANGELOG.md"
issues = "https://github.com/Colin-b/keepachangelog/issues"
[project.optional-dependencies]
testing = [
# Used to check starlette endpoint
"httpx==0.27.*",
"starlette==0.37.*",
# Used to check flask-restx endpoint
"flask-restx==1.*",
# Used to check coverage
"pytest-cov==5.*",
]
[project.scripts]
keepachangelog = "keepachangelog.__main__:main"
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = {attr = "keepachangelog.version.__version__"}
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:jsonschema.RefResolver is deprecated.*:DeprecationWarning",
]