]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - setup.py
Add some new files to the ignore file.
[xonotic/xonstat.git] / setup.py
index e167a957d16f1538eb15c3587a1a0badba637091..a3573d2419e3441ad0be8a9e9807940bc72a1fab 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,6 +14,12 @@ requires = [
     'repoze.tm2>=1.0b1', # default_commit_veto
     'zope.sqlalchemy',
     'WebError',
+    'sqlahelper',
+    'webhelpers',
+    'psycopg2',
+    'pyramid_beaker',
+    'pyramid_mako',
+    'waitress',
     ]
 
 if sys.version_info[:3] < (2,5,0):