-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (32 loc) · 857 Bytes
/
setup.py
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
import io
import setuptools
name = 'chaosindy'
desc = 'Chaos Toolkit Extension for INDY.'
author = "Evernym"
author_email = '[email protected]'
packages = [
'chaosindy'
]
test_require = []
with io.open('requirements-dev.txt') as f:
test_require = [l.strip() for l in f if not l.startswith('#')]
install_require = []
with io.open('requirements.txt') as f:
install_require = [l.strip() for l in f if not l.startswith('#')]
setup_params = dict(
name=name,
version='0.1.0',
description=desc,
author=author,
author_email=author_email,
license=license,
packages=packages,
install_requires=install_require,
tests_require=test_require,
python_requires='>=3.5.*'
)
def main():
"""Package installation entry point."""
setuptools.setup(**setup_params)
if __name__ == '__main__':
main()