1 Star 0 Fork 0

duanhlduanhl/opencanary

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
import sys
import opencanary
requirements = [
'Twisted==19.10.0',
'pyasn1==0.4.5',
'cryptography==2.5.0',
'simplejson==3.16.0',
'requests==2.21.0',
'zope.interface==4.6.0',
'PyPDF2==1.26.0',
'fpdf==1.7.2',
'passlib==1.7.1',
'Jinja2==2.10.0',
'ntlmlib==0.72',
'bcrypt==3.1.7']
py_env = None
# Python 2 requires wsgiref but with python 3 wsgiref is a standard library.
if sys.version_info.major < 3:
requirements.append('wsgiref==0.1.2')
requirements.append('hpfeeds==1.0')
py_env = '==2.7.*'
else:
requirements.append('hpfeeds3==0.9.8')
py_env = '>=3.5'
setup(
name='opencanary',
version=opencanary.__version__,
url='http://www.thinkst.com/',
author='Thinkst Applied Research',
author_email='info@thinkst.com',
description='OpenCanary daemon',
long_description='A low interaction honeypot intended to be run on internal networks.',
install_requires=requirements,
setup_requires=[
'setuptools_git'
],
license='BSD',
packages=find_packages(exclude='test'),
scripts=['bin/opencanaryd','bin/opencanary.tac'],
platforms='any',
include_package_data=True,
python_requires=py_env,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: Twisted",
"Topic :: System :: Networking",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/duanhlduanhl/opencanary.git
git@gitee.com:duanhlduanhl/opencanary.git
duanhlduanhl
opencanary
opencanary
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385