Show More
@@ -5,14 +5,14 b' py_version = sys.version_info' | |||||
5 | requirements = [ |
|
5 | requirements = [ | |
6 | "Pylons>=1.0.0", |
|
6 | "Pylons>=1.0.0", | |
7 | "SQLAlchemy>=0.6", |
|
7 | "SQLAlchemy>=0.6", | |
8 | "babel", |
|
|||
9 | "Mako>=0.3.2", |
|
8 | "Mako>=0.3.2", | |
10 |
"vcs>=0.1. |
|
9 | "vcs>=0.1.8", | |
11 | "pygments>=1.3.0", |
|
10 | "pygments>=1.3.0", | |
12 | "mercurial>=1.6", |
|
11 | "mercurial>=1.6", | |
13 | "whoosh==1.0.0", |
|
12 | "whoosh==1.0.0", | |
|
13 | "celery>=2.0.0", | |||
14 | "py-bcrypt", |
|
14 | "py-bcrypt", | |
15 |
" |
|
15 | "babel", | |
16 | ] |
|
16 | ] | |
17 |
|
17 | |||
18 | if sys.version_info < (2, 6): |
|
18 | if sys.version_info < (2, 6): | |
@@ -26,6 +26,7 b' data_files = []' | |||||
26 | #additional files that goes into package itself |
|
26 | #additional files that goes into package itself | |
27 | package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], } |
|
27 | package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], } | |
28 |
|
28 | |||
|
29 | description = 'Mercurial repository serving and browsing app' | |||
29 | #long description |
|
30 | #long description | |
30 | try: |
|
31 | try: | |
31 | readme_file = 'README.rst' |
|
32 | readme_file = 'README.rst' | |
@@ -33,7 +34,7 b' try:' | |||||
33 | except IOError, err: |
|
34 | except IOError, err: | |
34 | sys.stderr.write("[ERROR] Cannot find file specified as " |
|
35 | sys.stderr.write("[ERROR] Cannot find file specified as " | |
35 | "long_description (%s)\n" % readme_file) |
|
36 | "long_description (%s)\n" % readme_file) | |
36 | sys.exit(1) |
|
37 | long_description = description | |
37 |
|
38 | |||
38 |
|
39 | |||
39 | try: |
|
40 | try: | |
@@ -48,7 +49,7 b" packages = find_packages(exclude=['ez_se" | |||||
48 | setup( |
|
49 | setup( | |
49 | name='RhodeCode', |
|
50 | name='RhodeCode', | |
50 | version=get_version(), |
|
51 | version=get_version(), | |
51 | description='Mercurial repository serving and browsing app', |
|
52 | description=description, | |
52 | long_description=long_description, |
|
53 | long_description=long_description, | |
53 | keywords='mercurial web hgwebdir replacement serving hgweb rhodecode', |
|
54 | keywords='mercurial web hgwebdir replacement serving hgweb rhodecode', | |
54 | license='BSD', |
|
55 | license='BSD', |
General Comments 0
You need to be logged in to leave comments.
Login now