Show More
@@ -1,29 +1,30 b'' | |||
|
1 | 1 | import sys |
|
2 | 2 | from rhodecode import get_version |
|
3 | 3 | from rhodecode import __license__ |
|
4 | from rhodecode import __py_version__ | |
|
4 | 5 | from rhodecode import requirements |
|
5 | 6 | |
|
6 | py_version = sys.version_info | |
|
7 | ||
|
8 | if py_version < (2, 5): | |
|
7 | if __py_version__ < (2, 5): | |
|
9 | 8 | raise Exception('RhodeCode requires python 2.5 or later') |
|
10 | 9 | |
|
11 | 10 | |
|
12 | 11 | dependency_links = [ |
|
13 |
|
|
|
14 |
|
|
|
12 | "https://secure.rhodecode.org/vcs/archive/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', | |
|
18 | 'Environment :: Web Environment', | |
|
19 | 'Framework :: Pylons', | |
|
20 | 'Intended Audience :: Developers', | |
|
21 | 'License :: OSI Approved :: GNU General Public License (GPL)', | |
|
22 | 'Operating System :: OS Independent', | |
|
23 | 'Programming Language :: Python', | |
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
16 | classifiers = [ | |
|
17 | 'Development Status :: 4 - Beta', | |
|
18 | 'Environment :: Web Environment', | |
|
19 | 'Framework :: Pylons', | |
|
20 | 'Intended Audience :: Developers', | |
|
21 | 'License :: OSI Approved :: GNU General Public License (GPL)', | |
|
22 | 'Operating System :: OS Independent', | |
|
23 | 'Programming Language :: Python', | |
|
24 | 'Programming Language :: Python :: 2.5', | |
|
25 | 'Programming Language :: Python :: 2.6', | |
|
26 | 'Programming Language :: Python :: 2.7', | |
|
27 | ] | |
|
27 | 28 | |
|
28 | 29 | |
|
29 | 30 | # additional files from project that goes somewhere in the filesystem |
General Comments 0
You need to be logged in to leave comments.
Login now