Show More
@@ -1,43 +1,45 | |||
|
1 | 1 | from pylons_app import get_version |
|
2 | 2 | try: |
|
3 | 3 | from setuptools import setup, find_packages |
|
4 | 4 | except ImportError: |
|
5 | 5 | from ez_setup import use_setuptools |
|
6 | 6 | use_setuptools() |
|
7 | 7 | from setuptools import setup, find_packages |
|
8 | 8 | |
|
9 | 9 | setup( |
|
10 | 10 | name='pylons_app', |
|
11 | 11 | version=get_version(), |
|
12 | description='', | |
|
12 | description='Mercurial repository serving and browsing app', | |
|
13 | keywords='mercurial web hgwebdir replacement serving hgweb', | |
|
14 | license='BSD', | |
|
13 | 15 | author='marcin kuzminski', |
|
14 | 16 | author_email='marcin@python-works.com', |
|
15 | 17 | url='http://hg.python-works.com', |
|
16 | 18 | install_requires=[ |
|
17 | 19 | "Pylons>=1.0.0", |
|
18 | 20 | "SQLAlchemy>=0.6", |
|
19 | 21 | "Mako>=0.3.2", |
|
20 |
"vcs>=0.1. |
|
|
22 | "vcs>=0.1.3", | |
|
21 | 23 | "pygments>=1.3.0", |
|
22 | 24 | "mercurial>=1.5", |
|
23 | 25 | "pysqlite" |
|
24 | 26 | ], |
|
25 | 27 | setup_requires=["PasteScript>=1.6.3"], |
|
26 | 28 | packages=find_packages(exclude=['ez_setup']), |
|
27 | 29 | include_package_data=True, |
|
28 | 30 | test_suite='nose.collector', |
|
29 | 31 | package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']}, |
|
30 | 32 | message_extractors={'pylons_app': [ |
|
31 | 33 | ('**.py', 'python', None), |
|
32 | 34 | ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}), |
|
33 | 35 | ('public/**', 'ignore', None)]}, |
|
34 | 36 | zip_safe=False, |
|
35 | 37 | paster_plugins=['PasteScript', 'Pylons'], |
|
36 | 38 | entry_points=""" |
|
37 | 39 | [paste.app_factory] |
|
38 | 40 | main = pylons_app.config.middleware:make_app |
|
39 | 41 | |
|
40 | 42 | [paste.app_install] |
|
41 | 43 | main = pylons.util:PylonsInstaller |
|
42 | 44 | """, |
|
43 | 45 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now