Changeset 217
- Timestamp:
- 07/27/07 13:55:23 (1 year ago)
- Files:
-
- trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r209 r217 1 1 from setuptools import setup, find_packages 2 3 import django # not served from cheeseshop 4 import mx.DateTime # not served from cheeseshop 2 5 3 6 import sys … … 12 15 13 16 # no way to specify the dependency on django as we need a specific revision 14 install_requires = ['SQLObject>=0.6,<=0.7.99', 'simplejson'], # 'Django>=0.95,'], 17 install_requires = [ 18 'SQLObject>=0.6,<=0.7.99', 19 'simplejson', 20 # 'Django>=0.95' # Django not served on cheese shop 21 # 'mxDateTime', # not sure about this, maybe wrong name 22 ], 15 23 16 24 # metadata for upload to PyPI
