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', ], }, )