forked from astar-security/Honeyris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (57 loc) · 1.6 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
#!/usr/bin/python3
import os
from setuptools import setup
def _open_project_file(filename):
proj_path = os.path.abspath(os.path.dirname(__file__))
return open(os.path.join(proj_path, filename))
NAME = 'Honeyris'
VERSION = _open_project_file('VERSION').read().strip()
README = _open_project_file('README.md').read()
DESCRIPTION = (
'A cost effective way to detect intrusion in your network '
'in the form of a "Honeypot as a SIEM" (HaaS)'
)
AUTHOR = 'David Soria (@Sibwara)'
EMAIL = ''
URL = 'https://github.com/astar-security/Honeyris'
MODULES = [
'honeyris'
]
PACKAGES = []
REQUIREMENTS = [
'pyshark',
'scapy',
]
ENTRY_POINTS = {
"console_scripts": [
"honeyris = honeyris:main",
],
}
CLASSIFIERS = [ # see https://pypi.org/classifiers/
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'Intended Audience :: Other Audience',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: System :: Networking',
'Topic :: Utilities',
]
if __name__ == '__main__':
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=README,
author=AUTHOR,
author_email=EMAIL,
url=URL,
py_modules=MODULES,
packages=PACKAGES,
install_requires=REQUIREMENTS,
entry_points=ENTRY_POINTS,
classifiers=CLASSIFIERS,
)