forked from mushorg/conpot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.33 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
import multiprocessing
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import conpot
setup(
name='Conpot',
version=conpot.__version__,
packages=find_packages(exclude=['*.pyc']),
scripts=['bin/conpot'],
url="http://conpot.org",
license='GPL 2',
author="MushMush Foundation",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Security",
],
package_data={
"": ["*.txt", "*.rst"],
"conpot": ["conpot.cfg", "tests/data/*"],
},
keywords="ICS SCADA honeypot",
include_package_data=True,
long_description=open('README.md').read(),
description="""Conpot is an ICS honeypot with the goal to collect intelligence about the motives
and methods of adversaries targeting industrial control systems""",
test_suite='nose.collector',
tests_require="nose",
dependency_links=[
"https://github.com/rep/hpfeeds/archive/master.zip#egg=hpfeeds",
],
install_requires=open('requirements.txt').read().splitlines(),
)