-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.cfg
57 lines (51 loc) · 1.29 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
52
53
54
55
56
57
[metadata]
name = auditree-framework
version = attr: compliance.__version__
description = Tool to run compliance control checks as unit tests
author = Auditree Security and Compliance
author_email = [email protected]
url = https://auditree.github.io/
license = Apache License 2.0
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
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 =
inflection>=0.3.1
GitPython>=2.1.3
jinja2>=2.10
ilcli>=0.3.1
cryptography>=35.0.0
requests>=2.30.0
[options.packages.find]
exclude =
test.*
test
demo
[bdist_wheel]
universal = 1
[options.entry_points]
console_scripts =
compliance = compliance.scripts.compliance_cli:run
[options.extras_require]
dev =
pytest>=5.4.3
pytest-cov>=2.10.0
pre-commit>=2.4.0
Sphinx>=1.7.2
setuptools
wheel
twine
[flake8]
max-line-length = 88
extend-ignore = E203