-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.31 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "autoprop"
authors = [
{name = "Kale Kundert", email = "[email protected]"},
]
readme = 'README.rst'
dynamic = ["version", "description"]
requires-python = "~=3.6"
dependencies = [
'signature_dispatch~=1.0',
'backports.cached-property;python_version<"3.8"',
]
classifiers = [
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
'coveralls',
]
doc = [
'sphinx',
'sphinx_rtd_theme',
'autoclasstoc',
]
[project.urls]
'Documentation' = 'https://autoprop.readthedocs.io/en/latest/'
'Version Control' = 'https://github.com/kalekundert/autoprop'
'Bug Tracker' = 'https://github.com/kalekundert/autoprop/issues'
'Continuous Integration' = 'https://github.com/kalekundert/autoprop/actions'
'Test Coverage' = 'https://coveralls.io/github/kalekundert/autoprop'
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-glob='*.rst'"
doctest_optionflags = 'NORMALIZE_WHITESPACE'
[tool.pccc]
header_length = 72
types = ["chore", "docs", "feat", "fix", "refactor", "style", "test"]
[tool.semantic_release]
version_variable = 'autoprop/__init__.py:__version__'
build_command = 'python -m pip install flit && flit build'