1 | try: |
---|
2 | from setuptools import setup, find_packages |
---|
3 | except ImportError: |
---|
4 | from ez_setup import use_setuptools |
---|
5 | use_setuptools() |
---|
6 | from setuptools import setup, find_packages |
---|
7 | |
---|
8 | setup( |
---|
9 | name='pylonsapp', |
---|
10 | version='0.1', |
---|
11 | description='', |
---|
12 | author='', |
---|
13 | author_email='', |
---|
14 | url='', |
---|
15 | install_requires=[ |
---|
16 | "Pylons>=0.9.7", |
---|
17 | ], |
---|
18 | setup_requires=["PasteScript>=1.6.3"], |
---|
19 | packages=find_packages(exclude=['ez_setup']), |
---|
20 | include_package_data=True, |
---|
21 | test_suite='nose.collector', |
---|
22 | package_data={'pylonsapp': ['i18n/*/LC_MESSAGES/*.mo']}, |
---|
23 | #message_extractors={'pylonsapp': [ |
---|
24 | # ('**.py', 'python', None), |
---|
25 | # ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}), |
---|
26 | # ('public/**', 'ignore', None)]}, |
---|
27 | zip_safe=False, |
---|
28 | paster_plugins=['PasteScript', 'Pylons'], |
---|
29 | entry_points=""" |
---|
30 | [paste.app_factory] |
---|
31 | main = pylonsapp.config.middleware:make_app |
---|
32 | |
---|
33 | [paste.app_install] |
---|
34 | main = pylons.util:PylonsInstaller |
---|
35 | """, |
---|
36 | ) |
---|