comparison setup.py @ 1456:880a39e5d8df beta

fixed setup so it'll fetch tip of vcs for easier installation of beta version
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 07 Sep 2011 02:14:38 +0300
parents 0fd5794787a9
children ca99d77173fe
comparison
equal deleted inserted replaced
1455:9a7d0fbc4a80 1456:880a39e5d8df
8 8
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 "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
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 ]
26 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',
30 'Intended Audience :: Developers', 35 'Intended Audience :: Developers',
84 long_description=long_description, 89 long_description=long_description,
85 keywords=keywords, 90 keywords=keywords,
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,
93 setup_requires=["PasteScript>=1.6.3"], 98 setup_requires=["PasteScript>=1.6.3"],
94 data_files=data_files, 99 data_files=data_files,