@@ -5,28 +5,29 @@ from rhodecode import __platform__
py_version = sys.version_info
if py_version < (2, 5):
raise Exception('RhodeCode requires python 2.5 or later')
requirements = [
"Pylons==1.0.0",
"WebHelpers>=1.2",
"SQLAlchemy>=0.6.6",
"Mako>=0.4.0",
"vcs>=0.2.0",
"pygments>=1.4",
"mercurial>=1.7.5",
"whoosh>=1.3.4",
"mercurial>=1.8.1",
"whoosh>=1.8.0",
"celery>=2.2.4",
"babel",
"python-dateutil<=2.0",
]
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Pylons',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python', ]
if py_version < (2, 6):
requirements.append("simplejson")
Status change: