##// END OF EJS Templates
fixed setup so it'll fetch tip of vcs for easier installation of beta version
marcink -
r1456:880a39e5 beta
parent child Browse files
Show More
@@ -10,20 +10,25 b' 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 "vcs>=0.2.1.dev",
13 "Pylons==1.0.0",
14 "Pylons==1.0.0",
14 "WebHelpers>=1.2",
15 "WebHelpers>=1.2",
15 "SQLAlchemy>=0.7.1",
16 "SQLAlchemy>=0.7.2",
16 "Mako>=0.4.0",
17 "Mako>=0.4.2",
17 "vcs>=0.2.1",
18 "pygments>=1.4",
18 "pygments>=1.4",
19 "mercurial>=1.9,<2.0",
19 "mercurial>=1.9,<2.0",
20 "whoosh<1.8",
20 "whoosh<1.8",
21 "celery>=2.2.5,<2.3",
21 "celery>=2.2.5,<2.3",
22 "babel",
22 "babel",
23 "python-dateutil>=1.5.0,<2.0.0",
23 "python-dateutil>=1.5.0,<2.0.0",
24 "dulwich>=0.7.1"
24 "dulwich>=0.7.2"
25 ]
25 ]
26
26
27 dependency_links = [
28 "https://hg.rhodecode.org/vcs/archive/default.zip#egg=vcs-0.2.1.dev",
29 "https://bitbucket.org/marcinkuzminski/vcs/get/default.zip#egg=vcs-0.2.1.dev",
30 ]
31
27 classifiers = ['Development Status :: 4 - Beta',
32 classifiers = ['Development Status :: 4 - Beta',
28 'Environment :: Web Environment',
33 'Environment :: Web Environment',
29 'Framework :: Pylons',
34 'Framework :: Pylons',
@@ -86,7 +91,7 b' setup('
86 license=__license__,
91 license=__license__,
87 author='Marcin Kuzminski',
92 author='Marcin Kuzminski',
88 author_email='marcin@python-works.com',
93 author_email='marcin@python-works.com',
89 dependency_links=['https://hg.rhodecode.org/vcs/archive/tip.zip'],
94 dependency_links=dependency_links,
90 url='http://rhodecode.org',
95 url='http://rhodecode.org',
91 install_requires=requirements,
96 install_requires=requirements,
92 classifiers=classifiers,
97 classifiers=classifiers,
General Comments 0
You need to be logged in to leave comments. Login now