forked from chaostoolkit/chaostoolkit-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
87 lines (80 loc) · 2.16 KB
/
Copy pathsetup.cfg
File metadata and controls
87 lines (80 loc) · 2.16 KB
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
[aliases]
release = sdist bdist_wheel
test = pytest
[bdist_wheel]
universal = 1
[metadata]
name = chaostoolkit-lib
url = https://chaostoolkit.org
project_urls =
Docs: RTD = https://chaostoolkit.org
CI: GitHub = https://github.com/chaostoolkit/chaostoolkit-lib/actions
GitHub: issues = https://github.com/chaostoolkit/chaostoolkit-lib/issues
GitHub: repo = https://github.com/chaostoolkit/chaostoolkit-lib
description = Chaos Toolkit core library
long_description = file: README.md
long_description_content_type = text/markdown
author = Chaos Toolkit
author_email = contact@chaostoolkit.org
zip_safe = False
license_file = LICENSE
platforms = any
license = Apache License Version 2.0
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: Freely Distributable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation
Programming Language :: Python :: Implementation :: CPython
[options]
use_scm_version = True
python_requires = >=3.7
packages = find:
include_package_data = True
setup_requires =
pytest_runner
setuptools_scm>=1.15.0
setuptools_scm_git_archive>=1.0
install_requires =
logzero~=1.5
requests~=2.21
pyyaml~=6.0
contextvars;python_version<"3.7"
importlib-metadata~=1.2; python_version < '3.8'
importlib-metadata~=4.4; python_version > '3.9'
tests_require =
requests-mock
coverage
pytest~=6.2; python_version >= '3.6'
pytest-cov
pytest-sugar
ply
pyhcl
hvac
jsonpath2
chardet
[options.extras_require]
vault = hvac>=0.7.2
jsonpath = jsonpath2>=0.2.1
decoders = cchardet>=2.1.4; chardet>=3.0.4
[tool:pytest]
testpaths = tests
python_files =
test_*.py
*_test.py
tests.py
addopts =
-v
-rxs
--cov chaoslib
--cov-report term-missing:skip-covered
--cov-report xml
-p no:warnings