Changeset 217

Show
Ignore:
Timestamp:
07/27/07 13:55:23 (1 year ago)
Author:
johnbywater
Message:

Adjustment to requires statements.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/setup.py

    r209 r217  
    11from setuptools import setup, find_packages 
     2 
     3import django        # not served from cheeseshop 
     4import mx.DateTime   # not served from cheeseshop 
    25 
    36import sys 
     
    1215     
    1316    # 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    ], 
    1523 
    1624    # metadata for upload to PyPI