Simple repository for the /HonigTopf (HoneyPot) link, that alerts the admins if someone tries to scrape a moin moin wiki.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import os
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(here, 'README.md')) as f:
|
|
|
|
README = f.read()
|
|
|
|
|
|
|
|
requires = [
|
|
|
|
'chardet',
|
|
|
|
'plaster_pastedeploy',
|
|
|
|
'pyramid',
|
|
|
|
'waitress',
|
|
|
|
]
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='honeypot',
|
|
|
|
version='0.0.1',
|
|
|
|
description='HoneyPot',
|
|
|
|
long_description=README,
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Framework :: Pyramid',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
|
|
|
],
|
|
|
|
author='Holger Frey',
|
|
|
|
author_email='frey@imtek.de',
|
|
|
|
url='https://git.cpi.imtek.uni-freiburg.de/holgi/honeypot',
|
|
|
|
keywords='web pyramid pylons',
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=requires,
|
|
|
|
entry_points={
|
|
|
|
'paste.app_factory': [
|
|
|
|
'main = honeypot:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|