comparison setup.py @ 1966:fc6063e6630b beta

code cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 28 Jan 2012 18:15:45 +0200
parents b1ad9efeec14
children 324ac367a4da
comparison
equal deleted inserted replaced
1964:b1ad9efeec14 1966:fc6063e6630b
1 import sys 1 import sys
2 from rhodecode import get_version 2 from rhodecode import get_version
3 from rhodecode import __license__ 3 from rhodecode import __license__
4 from rhodecode import __py_version__
4 from rhodecode import requirements 5 from rhodecode import requirements
5 6
6 py_version = sys.version_info 7 if __py_version__ < (2, 5):
7
8 if py_version < (2, 5):
9 raise Exception('RhodeCode requires python 2.5 or later') 8 raise Exception('RhodeCode requires python 2.5 or later')
10 9
11 10
12 dependency_links = [ 11 dependency_links = [
13 "https://secure.rhodecode.org/vcs/archive/default.zip#egg=vcs-0.2.3.dev", 12 "https://secure.rhodecode.org/vcs/archive/default.zip#egg=vcs-0.2.3.dev",
14 "https://bitbucket.org/marcinkuzminski/vcs/get/default.zip#egg=vcs-0.2.3.dev", 13 "https://bitbucket.org/marcinkuzminski/vcs/get/default.zip#egg=vcs-0.2.3.dev",
15 ] 14 ]
16 15
17 classifiers = ['Development Status :: 4 - Beta', 16 classifiers = [
18 'Environment :: Web Environment', 17 'Development Status :: 4 - Beta',
19 'Framework :: Pylons', 18 'Environment :: Web Environment',
20 'Intended Audience :: Developers', 19 'Framework :: Pylons',
21 'License :: OSI Approved :: GNU General Public License (GPL)', 20 'Intended Audience :: Developers',
22 'Operating System :: OS Independent', 21 'License :: OSI Approved :: GNU General Public License (GPL)',
23 'Programming Language :: Python', 22 'Operating System :: OS Independent',
24 'Programming Language :: Python :: 2.5', 23 'Programming Language :: Python',
25 'Programming Language :: Python :: 2.6', 24 'Programming Language :: Python :: 2.5',
26 'Programming Language :: Python :: 2.7', ] 25 'Programming Language :: Python :: 2.6',
26 'Programming Language :: Python :: 2.7',
27 ]
27 28
28 29
29 # additional files from project that goes somewhere in the filesystem 30 # additional files from project that goes somewhere in the filesystem
30 # relative to sys.prefix 31 # relative to sys.prefix
31 data_files = [] 32 data_files = []