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