Show More
@@ -1,29 +1,30 b'' | |||||
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 |
|
|
12 | "https://secure.rhodecode.org/vcs/archive/default.zip#egg=vcs-0.2.3.dev", | |
14 |
|
|
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 |
|
|
23 | 'Programming Language :: Python', | |
25 |
|
|
24 | 'Programming Language :: Python :: 2.5', | |
26 |
|
|
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 |
General Comments 0
You need to be logged in to leave comments.
Login now