-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
70 lines (63 loc) · 1.62 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
[metadata]
name = PySXO
version = attr: PySXO.__version__
url = https://github.com/CiscoAandI/PySXO
project_urls =
Documentation = https://ciscoaandi.github.io/PySXO
Source Code = https://github.com/CiscoAandI/PySXO
Issue Tracker = https://github.com/CiscoAandI/PySXO/issues/
author = Ava Thorn
author_email = avthorn@cisco.com
maintainer = A&I
maintainer_email = cx-aandi@cisco.com
description = A simple python API for SecureX Orchestrator
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: Freely Distributable
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.6
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
[tool:pytest]
testpaths = tests
filterwarnings =
error
[coverage:run]
branch = True
source =
PySXO
tests
[coverage:paths]
source =
src
*/site-packages
[flake8]
max-line-length = 120
[mypy]
files = src/PySXO
python_version = 3.6
allow_redefinition = True
disallow_subclassing_any = True
# disallow_untyped_calls = True
# disallow_untyped_defs = True
# disallow_incomplete_defs = True
no_implicit_optional = True
local_partial_types = True
# no_implicit_reexport = True
strict_equality = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
# warn_return_any = True
# warn_unreachable = True