-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
55 lines (49 loc) · 1.25 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
from pathlib import Path
from setuptools import find_packages, setup
HERE = Path(__file__).parent.resolve()
with open(str(HERE / "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="threat9-test-bed",
use_scm_version={
"root": str(HERE),
"write_to": str(HERE / "threat9_test_bed" / "_version.py"),
},
url="http://threat9.com",
author="Mariusz Kupidura",
author_email="[email protected]",
description="Threat9 Test Bed",
long_description=long_description,
packages=find_packages(where=str(HERE)),
include_package_data=True,
entry_points={
"console_scripts": [
"test-bed = threat9_test_bed.cli:cli",
],
},
setup_requires=[
"setuptools_scm",
],
install_requires=[
"click",
"Faker",
"flask>=1.0.0",
"gunicorn",
"pyopenssl",
"requests",
],
extras_require={
"tests": [
"flake8",
"isort",
"pytest",
"unify",
]
},
classifiers=[
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
)