forked from WoTTsecurity/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (39 loc) · 1.03 KB
/
setup.py
File metadata and controls
47 lines (39 loc) · 1.03 KB
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
from setuptools import setup, find_packages
setup(
name="wott-agent",
version='0.1.2',
author="Viktor Petersson",
author_email="v@viktopia.io",
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',
],
install_requires=[
'certifi',
'cffi',
'chardet',
'cryptography',
'idna',
'netifaces',
'pyOpenSSL',
'requests',
'sh',
'pytz'
],
entry_points={
'console_scripts': [
'wott-agent = agent:main',
],
}
)