forked from csirtgadgets/apwgsdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.41 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
import os
from setuptools import setup, find_packages
import versioneer
import sys
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3,6 is not supported')
# https://www.pydanny.com/python-dot-py-tricks.html
if sys.argv[-1] == 'test':
test_requirements = [
'pytest',
]
try:
modules = map(__import__, test_requirements)
except ImportError as e:
err_msg = e.message.replace("No module named ", "")
msg = "%s is not installed. Install your test requirments." % err_msg
raise ImportError(msg)
r = os.system('py.test test -v')
if r == 0:
sys.exit()
else:
raise RuntimeError('tests failed')
setup(
name="apwgsdk",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="APWG Software Development Kid",
long_description="",
url="https://github.com/csirtgadgets/apwgsdk-py",
license='MPL2',
classifiers=[
"Topic :: System :: Networking",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
],
keywords=['network', 'security'],
author="Wes Young",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
'requests',
'csirtg_indicator==2.0a24'
],
entry_points={
'console_scripts': [
'apwg=apwgsdk.client:main',
]
},
)