comparison setup.py @ 1165:c5af1d3c861f rhodecode-0.0.1.1.6

changes for rhodecode release 1.1.6
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 21 Mar 2011 22:34:13 +0100
parents 42e53ebb6288
children 8a153dba7033
comparison
equal deleted inserted replaced
1153:9ca53f5d95a1 1165:c5af1d3c861f
1 import sys 1 import sys
2 from rhodecode import get_version 2 from rhodecode import get_version
3 from rhodecode import __platform__ 3 from rhodecode import __platform__
4 4
5 py_version = sys.version_info 5 py_version = sys.version_info
6
7 if py_version < (2, 5):
8 raise Exception('RhodeCode requires python 2.5 or later')
6 9
7 requirements = [ 10 requirements = [
8 "Pylons==1.0.0", 11 "Pylons==1.0.0",
9 "WebHelpers==1.2", 12 "WebHelpers==1.2",
10 "SQLAlchemy==0.6.6", 13 "SQLAlchemy==0.6.6",
73 name='RhodeCode', 76 name='RhodeCode',
74 version=get_version(), 77 version=get_version(),
75 description=description, 78 description=description,
76 long_description=long_description, 79 long_description=long_description,
77 keywords=keywords, 80 keywords=keywords,
78 license='BSD', 81 license='GPLv3',
79 author='Marcin Kuzminski', 82 author='Marcin Kuzminski',
80 author_email='marcin@python-works.com', 83 author_email='marcin@python-works.com',
81 url='http://rhodecode.org', 84 url='http://rhodecode.org',
82 install_requires=requirements, 85 install_requires=requirements,
83 classifiers=classifiers, 86 classifiers=classifiers,