-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
51 lines (46 loc) · 1.17 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
51
[metadata]
name = auditree-arboretum
version = attr: arboretum.__version__
description = The Auditree common fetchers, checks and harvest reports library
author = Auditree Security and Compliance
author_email = al.finkelstein@ibm.com
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]
include_package_data = True
packages = find:
install_requires =
auditree-framework>=1.2.3
auditree-harvest>=1.0.0
pyyaml>=5.4.1
defusedxml>=0.7.1
parameterized>=0.8.1
[options.packages.find]
exclude =
test.*
test
[bdist_wheel]
universal = 1
[options.extras_require]
dev =
pytest>=5.4.3
pytest-cov>=2.10.0
bandit>=1.5.0
pre-commit>=2.4.0
Sphinx>=1.7.2
setuptools
wheel
twine
[flake8]
max-line-length = 88
extend-ignore = E203