##// END OF EJS Templates
setup: normalize casing of dependencies and formatting of constraints...
Mads Kiilerich -
r7269:9ec1d2ac default
parent child Browse files
Show More
@@ -1,10 +1,10 b''
1 babel >= 0.9.6, < 2.4
1 Babel >= 0.9.6, < 2.4
2 waitress >= 0.8.8, < 1.0
2 waitress >= 0.8.8, < 1.0
3 pytest ~= 3.0, >= 3.3.0
3 pytest >= 3.3.0, < 4
4 pytest-runner
4 pytest-runner
5 pytest-sugar>=0.7.0
5 pytest-sugar >= 0.7.0
6 pytest-benchmark
6 pytest-benchmark
7 pytest-localserver
7 pytest-localserver
8 mock
8 mock
9 sphinx
9 Sphinx
10 webtest < 3
10 WebTest < 3
@@ -35,39 +35,39 b" callback = lambda V: ('.'.join(map(str, "
35 is_windows = __platform__ in ['Windows']
35 is_windows = __platform__ in ['Windows']
36
36
37 requirements = [
37 requirements = [
38 "alembic>=0.8.0,<0.9",
38 "alembic >= 0.8.0, < 0.9",
39 "GearBox<1",
39 "gearbox < 1",
40 "waitress>=0.8.8,<1.0",
40 "waitress >= 0.8.8, < 1.0",
41 "webob>=1.7,<1.8.0", # TurboGears2 doesn't support 1.8.0
41 "WebOb >= 1.7, < 1.8.0", # TurboGears2 doesn't support 1.8.0
42 "backlash >= 0.1.2, < 1.0.0",
42 "backlash >= 0.1.2, < 1.0.0",
43 "TurboGears2 >= 2.3.10, < 3.0.0",
43 "TurboGears2 >= 2.3.10, < 3.0.0",
44 "tgext.routes >= 0.2.0, < 1.0.0",
44 "tgext.routes >= 0.2.0, < 1.0.0",
45 "Beaker>=1.7.0,<2",
45 "Beaker >= 1.7.0, < 2",
46 "WebHelpers==1.3",
46 "WebHelpers == 1.3",
47 "formencode>=1.2.4,<=1.2.6",
47 "FormEncode >= 1.2.4, <= 1.2.6",
48 "SQLAlchemy>=1.1,<1.2",
48 "SQLAlchemy >= 1.1, < 1.2",
49 "Mako>=0.9.0,<=1.0.0",
49 "Mako >= 0.9.0, <= 1.0.0",
50 "pygments>=1.5",
50 "Pygments >= 1.5",
51 "whoosh>=2.5.0,<=2.5.7",
51 "Whoosh >= 2.5.0, <= 2.5.7",
52 "celery>=3.1,<3.2",
52 "celery >= 3.1, < 3.2",
53 "babel>=0.9.6,<2.4",
53 "Babel >= 0.9.6, < 2.4",
54 "python-dateutil>=1.5.0,<2.0.0",
54 "python-dateutil >= 1.5.0, < 2.0.0",
55 "markdown==2.2.1",
55 "Markdown == 2.2.1",
56 "docutils>=0.8.1",
56 "docutils >= 0.8.1",
57 "URLObject==2.3.4",
57 "URLObject == 2.3.4",
58 "Routes==1.13",
58 "Routes == 1.13",
59 "dulwich>=0.14.1",
59 "dulwich >= 0.14.1",
60 "mercurial>=4.1.1,<4.8",
60 "mercurial >= 4.1.1, < 4.8",
61 "decorator >= 3.3.2",
61 "decorator >= 3.3.2",
62 "Paste >= 2.0.3, < 3.0",
62 "Paste >= 2.0.3, < 3.0",
63 ]
63 ]
64
64
65 if sys.version_info < (2, 7):
65 if sys.version_info < (2, 7):
66 requirements.append("importlib==1.0.1")
66 requirements.append("importlib == 1.0.1")
67 requirements.append("argparse")
67 requirements.append("argparse")
68
68
69 if not is_windows:
69 if not is_windows:
70 requirements.append("bcrypt>=3.1.0")
70 requirements.append("bcrypt >= 3.1.0")
71
71
72 dependency_links = [
72 dependency_links = [
73 ]
73 ]
General Comments 0
You need to be logged in to leave comments. Login now