-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 923 Bytes
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "dctap"
author = "DCMI"
author-email = "tom@tombaker.org"
home-page = "https://github.com/dcmi/dctap-python"
requires = [
"click",
"ruamel.base",
"ruamel.yaml",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description-file = 'README.rst'
requires-python = '>=3.7'
[tool.flit.metadata.requires-extra]
test = [
"black",
"coverage",
"ipdb",
"ipykernel",
"ipython",
"pylint",
"pytest",
"pytest-cov",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
[tool.flit.scripts]
dctap = "dctap.cli:cli"
[tool.black]
line_length = 88