1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
--- setup.py.orig 2007-05-07 07:28:49.000000000 -0700
+++ setup.py 2007-05-07 07:30:16.000000000 -0700
@@ -10,36 +10,9 @@
execfile(os.path.join("turbogears", "release.py"))
# setup params
-install_requires = [
- "TurboJson >= 0.9.9",
- "TurboCheetah >= 0.9.5",
- "TurboKid >= 1.0.1",
- "CherryPy >= 2.2.1,<3.0.0alpha",
- "simplejson >= 1.3",
- "elementtree >= 1.2.6",
- "PasteScript >= 0.9.7",
- "FormEncode >= 0.7.1",
- "setuptools >= 0.6c2",
- "RuleDispatch >= 0.5a0.dev-r2303",
- "DecoratorTools >= 1.4",
- "ConfigObj >= 4.3.2"]
tgtesttools = ["nose >= 0.9.1", "SQLAlchemy>=0.3"]
standard = ["SQLObject>=0.8,<0.10dev"]
-# python 2.5 compatible list
-if sys.version_info < (2, 5):
- install_requires.extend([
- "cElementTree >= 1.0.5",
- ])
- tgtesttools.extend([
- "pysqlite"
- ])
- standard = ["SQLObject==bugfix,>=0.7.1dev-r1860,<=0.7.99"]
-else:
- install_requires.extend([
- "Cheetah >= 2.0rc7",
- ])
-
setup(
name="TurboGears",
@@ -70,7 +43,6 @@
the TurboGears subversion repository</a>.""",
url="http://www.turbogears.org",
zip_safe=False,
- install_requires = install_requires,
packages=find_packages(),
include_package_data=True,
exclude_package_data={"thirdparty": ["*"]},
@@ -117,13 +89,6 @@
catwalk = turbogears.toolbox.catwalk:CatWalk
""",
- extras_require = {
- "exp" : ["TGFastData"],
- "standard" : standard,
- "future" : ["Genshi>=0.3", "SQLAlchemy>=0.3"],
- "testtools" : ["nose >= 0.9.1"],
- "tgtesttools" : tgtesttools,
- },
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
|