-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.02 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "change"
dist-name = "change-log"
author = "Eileen Kuehn, Max Fischer"
author-email = "mainekuehn@gmail.com"
home-page = "https://github.com/mainekuehn/change-log"
description-file = "README.rst"
keywords = "release changelog distribution package"
classifiers = [
"License :: OSI Approved :: MIT License",
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Adaptive Technologies',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
requires = [
"pyyaml",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest >=4.3.0",
"flake8",
"flake8-bugbear",
"black; implementation_name=='cpython'",
]
doc = ["sphinx", "sphinx_rtd_theme"]
dev = ["pre-commit"]
[tool.flit.metadata.urls]
Documentation = "https://change-log.readthedocs.io/en/latest/"