X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonstat.git;a=blobdiff_plain;f=setup.py;h=a6b5e9b1fbd71d2d4cee70cec433b1c905541778;hp=6dbde2be58b500786ed63c621e4b015eaeae7352;hb=HEAD;hpb=52f61795325be33b6b39df2c9f19f7f611074e9d diff --git a/setup.py b/setup.py index 6dbde2b..a6b5e9b 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,9 @@ requires = [ 'pyramid', 'SQLAlchemy', 'transaction', - 'repoze.tm2>=1.0b1', # default_commit_veto + 'repoze.tm2>=1.0b1', 'zope.sqlalchemy', 'WebError', - 'sqlahelper', 'webhelpers', 'psycopg2', 'pyramid_beaker', @@ -33,6 +32,10 @@ setup( packages=find_packages(), include_package_data=True, zip_safe=False, - install_requires=requires + install_requires=requires, + entry_points={ + 'paste.app_factory': [ + 'main = xonstat:main', + ], + }, ) -