-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
50 lines (44 loc) · 1.09 KB
/
setup.cfg
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
[metadata]
name = auditree-plant
version = attr: plant.__version__
description = The Auditree tool for adding external evidence
author = Auditree Security and Compliance
author_email = [email protected]
url = https://auditree.github.io/
license = Apache License 2.0
classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
long_description_content_type = text/markdown
long_description = file: README.md
[options]
packages = find:
install_requires =
auditree-framework>=1.0.0
[options.packages.find]
exclude =
test.*
test
[bdist_wheel]
universal = 1
[options.entry_points]
console_scripts =
plant=plant.cli:run
[options.extras_require]
dev =
pre-commit>=2.4.0
pytest>=4.4.1
pytest-cov>=2.6.1
recommonmark
Sphinx>=1.7.2
setuptools
wheel
twine
[flake8]
max-line-length = 88
extend-ignore = E203