Mercurial > public > src > rhodecode
annotate setup.py @ 498:6b54caa8b074
update setup script and config tmpl
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sat, 04 Sep 2010 00:17:01 +0200 |
parents | 25ab66a26975 |
children | 644795a4e8d2 |
rev | line source |
---|---|
185
3380ca40cdba
added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
Marcin Kuzminski <marcin@python-works.com>
parents:
170
diff
changeset
|
1 from pylons_app import get_version |
0 | 2 try: |
3 from setuptools import setup, find_packages | |
4 except ImportError: | |
5 from ez_setup import use_setuptools | |
6 use_setuptools() | |
7 from setuptools import setup, find_packages | |
8 | |
9 setup( | |
498
6b54caa8b074
update setup script and config tmpl
Marcin Kuzminski <marcin@python-works.com>
parents:
452
diff
changeset
|
10 name='hg-app', |
185
3380ca40cdba
added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
Marcin Kuzminski <marcin@python-works.com>
parents:
170
diff
changeset
|
11 version=get_version(), |
344
674e0085ccc7
updated setup.py
Marcin Kuzminski <marcin@python-works.com>
parents:
342
diff
changeset
|
12 description='Mercurial repository serving and browsing app', |
674e0085ccc7
updated setup.py
Marcin Kuzminski <marcin@python-works.com>
parents:
342
diff
changeset
|
13 keywords='mercurial web hgwebdir replacement serving hgweb', |
674e0085ccc7
updated setup.py
Marcin Kuzminski <marcin@python-works.com>
parents:
342
diff
changeset
|
14 license='BSD', |
127
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
15 author='marcin kuzminski', |
244
782f0692b29c
fixed setup and install instructions
Marcin Kuzminski <marcin@python-works.com>
parents:
185
diff
changeset
|
16 author_email='marcin@python-works.com', |
342 | 17 url='http://hg.python-works.com', |
127
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
18 install_requires=[ |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
19 "Pylons>=1.0.0", |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
20 "SQLAlchemy>=0.6", |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
21 "Mako>=0.3.2", |
367
ab5d91709af9
updated requirements and readme
Marcin Kuzminski <marcin@python-works.com>
parents:
344
diff
changeset
|
22 "vcs>=0.1.4", |
246
ca80f8c00562
Fixed bug in repos, added dependencies and bumped version
Marcin Kuzminski <marcin@python-works.com>
parents:
244
diff
changeset
|
23 "pygments>=1.3.0", |
367
ab5d91709af9
updated requirements and readme
Marcin Kuzminski <marcin@python-works.com>
parents:
344
diff
changeset
|
24 "mercurial>=1.6", |
439
b153a51b1d3b
Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
367
diff
changeset
|
25 "pysqlite", |
452
25ab66a26975
fix for new bcrypt password.
Marcin Kuzminski <marcin@python-works.com>
parents:
451
diff
changeset
|
26 "whoosh==1.0.0b9", |
451
04e8b31fb245
Changed password crypting scheme to bcrypt, added dependency for setup
Marcin Kuzminski <marcin@python-works.com>
parents:
442
diff
changeset
|
27 "py-bcrypt", |
0 | 28 ], |
127
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
29 setup_requires=["PasteScript>=1.6.3"], |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
30 packages=find_packages(exclude=['ez_setup']), |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
31 include_package_data=True, |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
32 test_suite='nose.collector', |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
33 package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']}, |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
34 message_extractors={'pylons_app': [ |
0 | 35 ('**.py', 'python', None), |
36 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}), | |
37 ('public/**', 'ignore', None)]}, | |
127
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
38 zip_safe=False, |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
39 paster_plugins=['PasteScript', 'Pylons'], |
20dc7a5eb748
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
Marcin Kuzminski <marcin@python-works.com>
parents:
0
diff
changeset
|
40 entry_points=""" |
0 | 41 [paste.app_factory] |
42 main = pylons_app.config.middleware:make_app | |
43 | |
44 [paste.app_install] | |
45 main = pylons.util:PylonsInstaller | |
46 """, | |
47 ) |