]> git.xonotic.org Git - xonotic/xonstat.git/blob - setup.py
Remove more refs to sqlahelper.
[xonotic/xonstat.git] / setup.py
1 from setuptools import setup, find_packages
2
3 requires = [
4     'pyramid',
5     'SQLAlchemy',
6     'transaction',
7     'repoze.tm2>=1.0b1',
8     'zope.sqlalchemy',
9     'WebError',
10     'webhelpers',
11     'psycopg2',
12     'pyramid_beaker',
13     'pyramid_mako',
14     'waitress',
15 ]
16
17 setup(
18     name='XonStat',
19     version='1.0',
20     description='XonStat',
21     long_description='XonStat: The statistics web application for Xonotic',
22     classifiers=[
23         "Programming Language :: Python",
24         "Framework :: Pyramid",
25         "Topic :: Internet :: WWW/HTTP",
26         "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
27     ],
28     author='Ant Zucaro',
29     author_email='azucaro@gmail.com',
30     url='http://stats.xonotic.org',
31     keywords='web wsgi pylons pyramid',
32     packages=find_packages(),
33     include_package_data=True,
34     zip_safe=False,
35     install_requires=requires,
36     entry_points={
37         'paste.app_factory': [
38             'main = xonstat:main',
39         ],
40     },
41 )