forked from thinkst/opencanary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 947 Bytes
/
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
from setuptools import setup, find_packages
import os
import opencanary
setup(
name='opencanary',
version=opencanary.__version__,
url='http://www.thinkst.com/',
author='Thinkst Applied Research',
author_email='[email protected]',
description='OpenCanary daemon',
long_description='A low interaction honeypot intended to be run on internal networks.',
install_requires=[
'Twisted==14.0.2',
'pyasn1==0.1.7',
'pycrypto==2.6.1',
'simplejson==3.6.5',
'wsgiref==0.1.2',
'zope.interface==4.1.1',
'PyPDF2==1.23',
'fpdf==1.7',
'passlib==1.6.2',
'Jinja2>=2.4',
'ntlmlib==0.67',
'requests==2.7.0'
],
setup_requires=[
'setuptools_git'
],
license='BSD',
packages = find_packages(exclude='test'),
scripts=['bin/opencanaryd','bin/opencanary.tac'],
platforms='any',
include_package_data=True
)