X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonstat.git;a=blobdiff_plain;f=setup.py;h=6dbde2be58b500786ed63c621e4b015eaeae7352;hp=38572a23635c029674d2756496351e4627d337c8;hb=11652a016fc96d6277604e22f757daaf36e605b7;hpb=1a02dc60b8aeb312c2fd8024362224cfbc3ddc7a diff --git a/setup.py b/setup.py index 38572a2..6dbde2b 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,5 @@ -import os -import sys - from setuptools import setup, find_packages -here = os.path.abspath(os.path.dirname(__file__)) -README = open(os.path.join(here, 'README.md')).read() -CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() - requires = [ 'pyramid', 'SQLAlchemy', @@ -14,38 +7,32 @@ requires = [ 'repoze.tm2>=1.0b1', # default_commit_veto 'zope.sqlalchemy', 'WebError', - 'pyramid-jinja2', 'sqlahelper', 'webhelpers', 'psycopg2', - ] - -if sys.version_info[:3] < (2,5,0): - requires.append('pysqlite') + 'pyramid_beaker', + 'pyramid_mako', + 'waitress', +] -setup(name='XonStat', - version='0.0', - description='XonStat', - long_description=README + '\n\n' + CHANGES, - classifiers=[ +setup( + name='XonStat', + version='1.0', + description='XonStat', + long_description='XonStat: The statistics web application for Xonotic', + classifiers=[ "Programming Language :: Python", - "Framework :: Pylons", + "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", - ], - author='', - author_email='', - url='', - keywords='web wsgi bfg pylons pyramid', - packages=find_packages(), - include_package_data=True, - zip_safe=False, - test_suite='xonstat', - install_requires = requires, - entry_points = """\ - [paste.app_factory] - main = xonstat:main - """, - paster_plugins=['pyramid'], - ) + ], + author='Ant Zucaro', + author_email='azucaro@gmail.com', + url='http://stats.xonotic.org', + keywords='web wsgi pylons pyramid', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=requires +)