-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.4 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.4 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
from setuptools import setup
setup(name = 'Wirecamel',
description = 'Python based project that automate the use of SSLSPlit and generate human readable reports',
author = 'Hamza ESSAYEGH',
author_email = 'hamza.essayegh@protonmail.com',
maintainer = 'Hamza ESSAYEGH',
maintainer_email = 'hamza.essayegh@protonmail.com',
url = 'https://github.com/Querdos/wirecamel',
platform = 'Linux',
version = '1.0',
packages = ['wirecamel', 'wirecamel/lib'],
data_files = [
(
'/root/.wirecamel/conf',
[
'wirecamel/conf/hostapd.yaml',
'wirecamel/conf/iptables-configuration',
'wirecamel/conf/packages.yaml'
])
],
install_requires = [
'iso8601',
'tabulate',
'python-dateutil',
'pyyaml'
],
entry_points = {
'console_scripts': [
'wirecamel = wirecamel.wirecamel:main'
]
},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Operating System :: Linux :: Debian',
'Programming Language :: Python',
]
)