forked from RHEnVision/changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 882 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rhenvision-changelog"
description = "Wrapper around git-changelog to enhance it for Jira issues"
readme = "README.md"
authors = [{ name = "Ondrej Ezr", email = "oezr@redhat.com" }]
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["changelog", "changelog-generator", "commit-style"]
dependencies = [
"git-changelog = 1.0.0",
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/RHEnVision/changelog"
[project.scripts]
envision-changelog = "rhenvision_changelog.__main__:main"
[tool.pytest.ini_options]
pythonpath = [
"src"
]