-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
41 lines (39 loc) · 978 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
requires = [
'pyramid',
'SQLAlchemy',
'transaction',
'repoze.tm2>=1.0b1',
'zope.sqlalchemy',
'WebError',
'webhelpers',
'psycopg2',
'pyramid_beaker',
'pyramid_mako',
'waitress',
]
setup(
name='XonStat',
version='1.0',
description='XonStat',
long_description='XonStat: The statistics web application for Xonotic',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
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,
entry_points={
'paste.app_factory': [
'main = xonstat:main',
],
},
)