-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
77 lines (67 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import os
from setuptools import setup, find_packages
import versioneer
import sys
# vagrant doesn't appreciate hard-linking
if os.environ.get('USER') == 'vagrant' or os.path.isdir('/vagrant'):
del os.link
with open('requirements.txt') as f:
reqs = f.read().splitlines()
# https://www.pydanny.com/python-dot-py-tricks.html
if sys.argv[-1] == 'test':
test_requirements = [
'pytest',
'coverage',
'pytest_cov',
]
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('pytest test -v --cov=csirtg_mail --cov-fail-under=50')
if r == 0:
sys.exit()
else:
raise RuntimeError('tests failed')
cmds = [
'csirtg-mail=csirtg_mail.client:main'
]
def get_requirements_by_version():
base_packages = [
'beautifulsoup4',
'chardet',
'lxml',
'html5lib'
]
packages27 = ['pyzmail']
packages36 = ['pyzmail36']
if sys.version_info.major >= (3) and sys.version_info.minor >= (6):
return base_packages + packages36
else:
return base_packages + packages27
setup(
name="csirtg_mail",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="the fastest way to parse mail",
long_description="the fastest way to parse mail",
url="https://github.com/csirtgadgets/csirtg-mail-py",
license='MPL2',
classifiers=[
"Topic :: System :: Networking",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
],
keywords=['security'],
author="Wes Young",
author_email="[email protected]",
packages=find_packages(),
install_requires=get_requirements_by_version(),
entry_points={
'console_scripts': cmds
},
)