from distutils.core import setup setup(name='crashreportd', version='0.1', url='http://wiki.freebsd.org/SummerOfCode2012/AutomatedKernelCrashReportingSystem', author='Tzanetos Balitsaris', author_email='tzabal@freebsd.org', description='The server side program that handles the received crash reports. Part of the Automated Kernel Crash Reporting System.', license='BSD', platforms=['FreeBSD'], py_modules=['crashreportd.crashreport', 'crashreportd.database', 'crashreportd.settings'], data_files=[('/usr/sbin', ['crashreportd/crashreportd.py']), ('/usr/local/www/apache22/wsgi-scripts', ['crashreportd/confirm_report.wsgi'])], )