aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pavement.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py
index ff49926..b880183 100644
--- a/pavement.py
+++ b/pavement.py
@@ -25,7 +25,7 @@ DOWNLOAD_URL = 'http://code.google.com/p/dodai/downloads/list'
25PY_VERSION_LOW = '2.6.0' 25PY_VERSION_LOW = '2.6.0'
26PY_VERSION_HIGH = '3.0.0' 26PY_VERSION_HIGH = '3.0.0'
27PLATFORMS = ['Linux'] 27PLATFORMS = ['Linux']
28SETUP_REQUIRES=['sqlalchemy'] 28SETUP_REQUIRES=['sqlalchemy', 'chardet']
29CLASSIFIERS = [ 29CLASSIFIERS = [
30 'Development Status :: 4 - Beta', 30 'Development Status :: 4 - Beta',
31 'Environment :: Console', 31 'Environment :: Console',
@@ -82,7 +82,7 @@ options(
82 long_description=LONG_DESCRIPTION, 82 long_description=LONG_DESCRIPTION,
83 license=LICENSE, 83 license=LICENSE,
84 setup_requires=SETUP_REQUIRES, 84 setup_requires=SETUP_REQUIRES,
85 install_requires=[], 85 install_requires=['sqlalchemy', 'chardet'],
86 platforms = PLATFORMS 86 platforms = PLATFORMS
87 87
88)) 88))