Mercurial > public > src > rhodecode
comparison setup.py @ 1658:7695d34b76b4 demo
merged stable into demo
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Mon, 17 Oct 2011 01:58:40 +0200 |
parents | f65c38f4ef7a dddd9380d0bf |
children | 1c0228f382f0 |
comparison
equal
deleted
inserted
replaced
1619:98fb507e4c8c | 1658:7695d34b76b4 |
---|---|
9 if py_version < (2, 5): | 9 if py_version < (2, 5): |
10 raise Exception('RhodeCode requires python 2.5 or later') | 10 raise Exception('RhodeCode requires python 2.5 or later') |
11 | 11 |
12 requirements = [ | 12 requirements = [ |
13 "Pylons==1.0.0", | 13 "Pylons==1.0.0", |
14 "Beaker==1.5.4", | |
14 "WebHelpers>=1.2", | 15 "WebHelpers>=1.2", |
15 "formencode==1.2.4", | 16 "formencode==1.2.4", |
16 "SQLAlchemy>=0.7.2,<0.8", | 17 "SQLAlchemy==0.7.3", |
17 "Mako>=0.4.2", | 18 "Mako==0.5.0", |
18 "pygments>=1.4", | 19 "pygments>=1.4", |
19 "mercurial>=1.9.3,<2.0", | 20 "mercurial>=1.9.3,<2.0", |
20 "whoosh<1.8", | 21 "whoosh<1.8", |
21 "celery>=2.2.5,<2.3", | 22 "celery>=2.2.5,<2.3", |
22 "babel", | 23 "babel", |
23 "python-dateutil>=1.5.0,<2.0.0", | 24 "python-dateutil>=1.5.0,<2.0.0", |
24 "dulwich>=0.8.0", | 25 "dulwich>=0.8.0,<0.9.0", |
25 "vcs>=0.2.1", | 26 "vcs==0.2.2", |
26 "webob==1.0.8" | 27 "webob==1.0.8" |
27 ] | 28 ] |
28 | 29 |
29 dependency_links = [ | 30 dependency_links = [ |
30 ] | 31 ] |
31 | 32 |
32 classifiers = ['Development Status :: 5 - Production/Stable', | 33 classifiers = ['Development Status :: 5 - Production/Stable', |
33 'Environment :: Web Environment', | 34 'Environment :: Web Environment', |
34 'Framework :: Pylons', | 35 'Framework :: Pylons', |
35 'Intended Audience :: Developers', | 36 'Intended Audience :: Developers', |
36 'License :: OSI Approved :: BSD License', | 37 'License :: OSI Approved :: GNU General Public License (GPL)', |
37 'Operating System :: OS Independent', | 38 'Operating System :: OS Independent', |
38 'Programming Language :: Python', | 39 'Programming Language :: Python', |
39 'Programming Language :: Python :: 2.5', | 40 'Programming Language :: Python :: 2.5', |
40 'Programming Language :: Python :: 2.6', | 41 'Programming Language :: Python :: 2.6', |
41 'Programming Language :: Python :: 2.7', ] | 42 'Programming Language :: Python :: 2.7', ] |