comparison setup.py @ 1512:bf263968da47

merge beta in stable branch
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 07 Oct 2011 01:08:50 +0200
parents 2182a2005278 a5981def1961
children 752b0a7b7679
comparison
equal deleted inserted replaced
1329:e058df3ff2b4 1512:bf263968da47
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 "WebHelpers==1.2", 14 "WebHelpers>=1.2",
15 "SQLAlchemy==0.6.6", 15 "formencode==1.2.4",
16 "Mako==0.4.0", 16 "SQLAlchemy>=0.7.2,<0.8",
17 "vcs==0.1.11", 17 "Mako>=0.4.2",
18 "pygments==1.4.0", 18 "pygments>=1.4",
19 "mercurial==1.7.5", 19 "mercurial>=1.9.3,<2.0",
20 "whoosh==1.3.4", 20 "whoosh<1.8",
21 "celery==2.2.5", 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.8.0",
25 "vcs>=0.2.1",
26 "webob==1.0.8"
24 ] 27 ]
28
29 dependency_links = [
30 ]
25 31
26 classifiers = ['Development Status :: 5 - Production/Stable', 32 classifiers = ['Development Status :: 5 - Production/Stable',
27 'Environment :: Web Environment', 33 'Environment :: Web Environment',
28 'Framework :: Pylons', 34 'Framework :: Pylons',
29 'Intended Audience :: Developers', 35 'Intended Audience :: Developers',
36 'License :: OSI Approved :: BSD License',
30 'Operating System :: OS Independent', 37 'Operating System :: OS Independent',
31 'Programming Language :: Python', 38 'Programming Language :: Python',
32 'Programming Language :: Python :: 2.5', 39 'Programming Language :: Python :: 2.5',
33 'Programming Language :: Python :: 2.6', 40 'Programming Language :: Python :: 2.6',
34 'Programming Language :: Python :: 2.7', ] 41 'Programming Language :: Python :: 2.7', ]
83 long_description=long_description, 90 long_description=long_description,
84 keywords=keywords, 91 keywords=keywords,
85 license=__license__, 92 license=__license__,
86 author='Marcin Kuzminski', 93 author='Marcin Kuzminski',
87 author_email='marcin@python-works.com', 94 author_email='marcin@python-works.com',
95 dependency_links=dependency_links,
88 url='http://rhodecode.org', 96 url='http://rhodecode.org',
89 install_requires=requirements, 97 install_requires=requirements,
90 classifiers=classifiers, 98 classifiers=classifiers,
91 setup_requires=["PasteScript>=1.6.3"], 99 setup_requires=["PasteScript>=1.6.3"],
92 data_files=data_files, 100 data_files=data_files,