]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - setup.py
Reduce the number of fast caps shown on the map_info page.
[xonotic/xonstat.git] / setup.py
index ab818f2065892c348b51f5f4c33fba46debd9734..9e4fddc18604162cb512cdf1130781613d958a84 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import sys
 from setuptools import setup, find_packages
 
 here = os.path.abspath(os.path.dirname(__file__))
-README = open(os.path.join(here, 'README.txt')).read()
+README = open(os.path.join(here, 'README.md')).read()
 CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
 
 requires = [
@@ -14,10 +14,13 @@ requires = [
     'repoze.tm2>=1.0b1', # default_commit_veto
     'zope.sqlalchemy',
     'WebError',
-    'pyramid-jinja2',
     'sqlahelper',
     'webhelpers',
     'psycopg2',
+    'pyramid_beaker',
+    'pyramid_mako',
+    'pyramid_persona',
+    'waitress',
     ]
 
 if sys.version_info[:3] < (2,5,0):