Show More
@@ -0,0 +1,17 b'' | |||
|
1 | Pylons==1.0.0 | |
|
2 | Beaker==1.6.2 | |
|
3 | WebHelpers>=1.2 | |
|
4 | formencode==1.2.4 | |
|
5 | SQLAlchemy==0.7.3 | |
|
6 | Mako==0.5.0 | |
|
7 | pygments>=1.4 | |
|
8 | mercurial>=2.0,<2.1 | |
|
9 | whoosh<1.8 | |
|
10 | celery>=2.2.5,<2.3 | |
|
11 | babel | |
|
12 | python-dateutil>=1.5.0,<2.0.0 | |
|
13 | dulwich>=0.8.0,<0.9.0 | |
|
14 | vcs>=0.2.3.dev | |
|
15 | webob==1.0.8 | |
|
16 | markdown==2.0.3 | |
|
17 | docutils==0.8.1 No newline at end of file |
@@ -34,6 +34,27 b" VERSION = (1, 3, 0, 'beta')" | |||
|
34 | 34 | PLATFORM_WIN = ('Windows') |
|
35 | 35 | PLATFORM_OTHERS = ('Linux', 'Darwin', 'FreeBSD', 'OpenBSD', 'SunOS') |
|
36 | 36 | |
|
37 | requirements = [ | |
|
38 | "Pylons==1.0.0", | |
|
39 | "Beaker==1.6.2", | |
|
40 | "WebHelpers>=1.2", | |
|
41 | "formencode==1.2.4", | |
|
42 | "SQLAlchemy==0.7.3", | |
|
43 | "Mako==0.5.0", | |
|
44 | "pygments>=1.4", | |
|
45 | "mercurial>=2.0,<2.1", | |
|
46 | "whoosh<1.8", | |
|
47 | "celery>=2.2.5,<2.3", | |
|
48 | "babel", | |
|
49 | "python-dateutil>=1.5.0,<2.0.0", | |
|
50 | "dulwich>=0.8.0,<0.9.0", | |
|
51 | "vcs>=0.2.3.dev", | |
|
52 | "webob==1.0.8", | |
|
53 | "markdown==2.0.3", | |
|
54 | "docutils==0.8.1", | |
|
55 | ] | |
|
56 | ||
|
57 | ||
|
37 | 58 | try: |
|
38 | 59 | from rhodecode.lib import get_current_revision |
|
39 | 60 | _rev = get_current_revision() |
@@ -3,31 +3,13 b' from rhodecode import get_version' | |||
|
3 | 3 | from rhodecode import __platform__ |
|
4 | 4 | from rhodecode import __license__ |
|
5 | 5 | from rhodecode import PLATFORM_OTHERS |
|
6 | from rhodecode import requirements | |
|
6 | 7 | |
|
7 | 8 | py_version = sys.version_info |
|
8 | 9 | |
|
9 | 10 | if py_version < (2, 5): |
|
10 | 11 | raise Exception('RhodeCode requires python 2.5 or later') |
|
11 | 12 | |
|
12 | requirements = [ | |
|
13 | "Pylons==1.0.0", | |
|
14 | "Beaker==1.6.2", | |
|
15 | "WebHelpers>=1.2", | |
|
16 | "formencode==1.2.4", | |
|
17 | "SQLAlchemy==0.7.3", | |
|
18 | "Mako==0.5.0", | |
|
19 | "pygments>=1.4", | |
|
20 | "mercurial>=2.0,<2.1", | |
|
21 | "whoosh<1.8", | |
|
22 | "celery>=2.2.5,<2.3", | |
|
23 | "babel", | |
|
24 | "python-dateutil>=1.5.0,<2.0.0", | |
|
25 | "dulwich>=0.8.0,<0.9.0", | |
|
26 | "vcs>=0.2.3.dev", | |
|
27 | "webob==1.0.8", | |
|
28 | "markdown==2.0.3", | |
|
29 | "docutils==0.8.1", | |
|
30 | ] | |
|
31 | 13 | |
|
32 | 14 | dependency_links = [ |
|
33 | 15 | "https://secure.rhodecode.org/vcs/archive/default.zip#egg=vcs-0.2.3.dev", |
General Comments 0
You need to be logged in to leave comments.
Login now