generated from IBM/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
96 lines (83 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[metadata]
name = compliance-trestle-fedramp
version = attr: trestle_fedramp.__version__
description = Trestle plugin for FedRAMP validation and format conversion
author = IBM
author_email = [email protected]
license = Apache Software License v2
url = https://github.com/oscal-compass/compliance-trestle-fedramp
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Operating System :: Microsoft
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
long_description_content_type = text/markdown
long_description = file: README.md
python_require= '>=3.9'
[options]
packages = find:
include_package_data = True
install_requires =
compliance-trestle>=3.3.0
saxonche>=12.4.1.0
python-docx>=1.1.0
[options.packages.find]
include = trestle_fedramp*
exclude = tests
# Needs changes
[bdist_wheel]
universal = 1
[options.extras_require]
dev =
pytest>=5.4.3
pytest-cov>=2.10.0
pytest-xdist
pre-commit>=2.4.0
setuptools
wheel
yapf
python-semantic-release>=9.8.0
pep8-naming
pytest-random-order
python-dateutil
mypy
# # Docs website
mkdocs
mkdocstrings
mkdocs-material
markdown-include
pymdown-extensions
livereload
## Constrain system
pylint
[flake8]
# WARNING: This should be kept compatible with .pre-commit-config.yaml
ignore = P1,C812,C813,C814,C815,C816
max-line-length=120
[mypy]
plugins = pydantic.mypy
follow_imports = normal
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
disallow_any_generics = True
check_untyped_defs = True
no_implicit_reexport = True
show_error_codes = True
show_error_context = True
# disallow-untyped-calls = True
disallow_untyped_defs = True
[pydantic-mypy]
init_forbid_extra = True
init_typed = True
warn_required_dynamic_aliases = True
warn_untyped_fields = True
[coverage:run]
relative_files = True