forked from WoTTsecurity/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (49 loc) · 1.34 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
from setuptools import setup, find_packages
import version
static_version, commit_hash, _, build_number = version.version()
full_version = version.version_string(static_version, commit_hash, build_number)
setup(
name="wott-agent",
version=full_version,
author="Viktor Petersson",
author_email="[email protected]",
description="WoTT agent",
packages=find_packages(exclude=('tests',)),
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
setup_requires=[
'GitPython'
],
install_requires=[
'certifi',
'cffi',
'chardet',
'cryptography',
'idna',
'netifaces',
'psutil',
'pyOpenSSL',
'python-iptables',
'requests',
'sh',
'pytz',
'setuptools',
'systemd-python'
],
entry_points={
'console_scripts': [
'wott-agent = agent.__main__:main',
],
}
)