comparison setup.py @ 3700:3563bb7b4b82

merge with rc1
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 07 Apr 2013 18:37:22 +0200
parents 80dc3a194d43 00a486622a2e
children 5293d4bbb1ea
comparison
equal deleted inserted replaced
3525:0cef54d34605 3700:3563bb7b4b82
31 __platform__ = platform.system() 31 __platform__ = platform.system()
32 32
33 is_windows = __platform__ in _get_meta_var('PLATFORM_WIN', _metadata) 33 is_windows = __platform__ in _get_meta_var('PLATFORM_WIN', _metadata)
34 34
35 requirements = [ 35 requirements = [
36 "waitress==0.8.1", 36 "waitress==0.8.2",
37 "webob==1.0.8", 37 "webob==1.0.8",
38 "webtest==1.4.3", 38 "webtest==1.4.3",
39 "Pylons==1.0.0", 39 "Pylons==1.0.0",
40 "Beaker==1.6.4", 40 "Beaker==1.6.4",
41 "WebHelpers==1.3", 41 "WebHelpers==1.3",
42 "formencode==1.2.4", 42 "formencode==1.2.4",
43 "SQLAlchemy==0.7.9", 43 "SQLAlchemy==0.7.10",
44 "Mako==0.7.3", 44 "Mako==0.7.3",
45 "pygments>=1.5", 45 "pygments>=1.5",
46 "whoosh>=2.4.0,<2.5", 46 "whoosh>=2.4.0,<2.5",
47 "celery>=2.2.5,<2.3", 47 "celery>=2.2.5,<2.3",
48 "babel", 48 "babel",
60 if sys.version_info < (2, 7): 60 if sys.version_info < (2, 7):
61 requirements.append("unittest2") 61 requirements.append("unittest2")
62 requirements.append("argparse") 62 requirements.append("argparse")
63 63
64 if is_windows: 64 if is_windows:
65 requirements.append("mercurial==2.4.2") 65 requirements.append("mercurial==2.5.4")
66 else: 66 else:
67 requirements.append("py-bcrypt") 67 requirements.append("py-bcrypt")
68 requirements.append("mercurial==2.4.2") 68 requirements.append("mercurial==2.5.4")
69 69
70 70
71 dependency_links = [ 71 dependency_links = [
72 ] 72 ]
73 73
90 data_files = [] 90 data_files = []
91 91
92 # additional files that goes into package itself 92 # additional files that goes into package itself
93 package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], } 93 package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], }
94 94
95 description = ('Mercurial repository browser/management with ' 95 description = ('RhodeCode is a fast and powerful management tool '
96 'build in push/pull server and full text search') 96 'for Mercurial and GIT with a built in push/pull server, '
97 'full text search and code-review.')
97 keywords = ' '.join(['rhodecode', 'rhodiumcode', 'mercurial', 'git', 98 keywords = ' '.join(['rhodecode', 'rhodiumcode', 'mercurial', 'git',
98 'code review', 'repo groups', 'ldap' 99 'code review', 'repo groups', 'ldap'
99 'repository management', 'hgweb replacement' 100 'repository management', 'hgweb replacement'
100 'hgwebdir', 'gitweb replacement', 'serving hgweb', ]) 101 'hgwebdir', 'gitweb replacement', 'serving hgweb', ])
101 # long description 102 # long description
156 157
157 [paste.app_install] 158 [paste.app_install]
158 main = pylons.util:PylonsInstaller 159 main = pylons.util:PylonsInstaller
159 160
160 [paste.global_paster_command] 161 [paste.global_paster_command]
161 setup-rhodecode=rhodecode.config.setup_rhodecode:SetupCommand 162 setup-rhodecode=rhodecode.lib.paster_commands.setup_rhodecode:Command
162 cleanup-repos=rhodecode.lib.cleanup:CleanupCommand 163 cleanup-repos=rhodecode.lib.paster_commands.cleanup:Command
163 update-repoinfo=rhodecode.lib.update_repoinfo:UpdateCommand 164 update-repoinfo=rhodecode.lib.paster_commands.update_repoinfo:Command
165 make-rcext=rhodecode.lib.paster_commands.make_rcextensions:Command
166 repo-scan=rhodecode.lib.paster_commands.repo_scan:Command
167 cache-keys=rhodecode.lib.paster_commands.cache_keys:Command
168 ishell=rhodecode.lib.paster_commands.ishell:Command
164 make-index=rhodecode.lib.indexers:MakeIndex 169 make-index=rhodecode.lib.indexers:MakeIndex
165 make-rcext=rhodecode.config.rcextensions.make_rcextensions:MakeRcExt
166 upgrade-db=rhodecode.lib.dbmigrate:UpgradeDb 170 upgrade-db=rhodecode.lib.dbmigrate:UpgradeDb
167 celeryd=rhodecode.lib.celerypylons.commands:CeleryDaemonCommand 171 celeryd=rhodecode.lib.celerypylons.commands:CeleryDaemonCommand
168 """, 172 """,
169 ) 173 )