Changeset 4553
- Timestamp:
- 05/01/08 08:53:35 (3 months ago)
- Files:
-
- branches/1.0/setup.py (modified) (4 diffs)
- branches/1.1/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/setup.py
r4152 r4553 14 14 # setup params 15 15 install_requires = [ 16 "CherryPy >= 2.3.0, <3.0.0alpha",16 "CherryPy >= 2.3.0, < 3.0.0alpha", 17 17 "ConfigObj >= 4.3.2", 18 18 "DecoratorTools >= 1.4", … … 30 30 31 31 future = [ 32 "Elixir >=0.4.0",33 "Genshi >=0.4.4",32 "Elixir >= 0.4.0", 33 "Genshi >= 0.4.4", 34 34 ] 35 35 36 if sys.version_info < (2, 5): 37 sqlobject = [ 38 "SQLObject==bugfix,>=0.7.1dev-r1860,<=0.7.99", 39 ] 40 else: 41 sqlobject = [ 42 "SQLObject>=0.8,<=0.10.0" 43 ] 36 sqlobject = [ 37 "SQLObject >= 0.7.1" 38 ] 44 39 45 40 sqlalchemy = [ … … 48 43 49 44 testtools = [ 50 "nose >= 0.9.3, <=0.10.0a1",45 "nose >= 0.9.3, <= 0.10.0a1", 51 46 ] 52 47 53 48 tgtesttools = [ 54 "nose >= 0.9.3, <=0.10.0a1",49 "nose >= 0.9.3, <= 0.10.0a1", 55 50 "SQLAlchemy >= 0.3.10", 56 51 ] … … 67 62 else: 68 63 # currently there are no extra requires for Python >= 2.5 69 # #install_requires.extend([])64 # install_requires.extend([]) 70 65 pass 71 66 branches/1.1/setup.py
r4406 r4553 32 32 ] 33 33 34 35 if sys.version_info < (2, 5): 36 sqlobject = ["SQLObject >= 0.7.1, < 0.10.0"] 37 else: 38 sqlobject = ["SQLObject >= 0.8, <= 0.10.0"] 34 sqlobject = [ 35 "SQLObject >= 0.7.1" 36 ] 39 37 40 38 exp = ["TGFastData"]