Show More
@@ -1,11 +1,10 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 | |
@@ -14,7 +13,8 b' dependency_links = [' | |||
|
14 | 13 |
|
|
15 | 14 | ] |
|
16 | 15 | |
|
17 | classifiers = ['Development Status :: 4 - Beta', | |
|
16 | classifiers = [ | |
|
17 | 'Development Status :: 4 - Beta', | |
|
18 | 18 |
|
|
19 | 19 |
|
|
20 | 20 |
|
@@ -23,7 +23,8 b" classifiers = ['Development Status :: 4 " | |||
|
23 | 23 |
|
|
24 | 24 |
|
|
25 | 25 |
|
|
26 |
|
|
|
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