import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', 'SQLAlchemy', 'transaction', 'pyramid_tm', 'pyramid_debugtoolbar', 'zope.sqlalchemy', 'waitress', 'psycopg2', ] setup(name='akcrs-website', version='0.1', description='The dynamic website of the Automated Kernel Crash Reporting System', long_description=README + '\n\n' + CHANGES, classifiers=[ "Programming Language :: Python", "Framework :: Pylons", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ], author='Tzanetos Balitsaris', author_email='tzabal@freebsd.org', url='http://wiki.freebsd.org/SummerOfCode2012/AutomatedKernelCrashReportingSystem', keywords='freebsd akcrs website pyramid', packages=find_packages(), include_package_data=True, zip_safe=False, test_suite='akcrswebsite', install_requires=requires, entry_points="""\ [paste.app_factory] main = akcrswebsite:main [console_scripts] initialize_akcrs-website_db = akcrswebsite.scripts.initializedb:main """, )