This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 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='central_library', |
| 10 |
version='0.1', |
| 11 |
description='', |
| 12 |
author='', |
| 13 |
author_email='', |
| 14 |
#url='', |
| 15 |
install_requires=[ |
| 16 |
"Pylons>=0.9.6", |
| 17 |
"SQLAlchemy>=0.4", |
| 18 |
"Mako", |
| 19 |
], |
| 20 |
setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"], |
| 21 |
packages=find_packages(exclude=['ez_setup']), |
| 22 |
include_package_data=True, |
| 23 |
test_suite='nose.collector', |
| 24 |
package_data={'central_library': ['i18n/*/LC_MESSAGES/*.mo']}, |
| 25 |
#message_extractors = {'central_library': [ |
| 26 |
# ('**.py', 'python', None), |
| 27 |
# ('templates/**.mako', 'mako', None), |
| 28 |
# ('public/**', 'ignore', None)]}, |
| 29 |
zip_safe=False, |
| 30 |
paster_plugins=['PasteScript', 'Pylons'], |
| 31 |
entry_points=""" |
| 32 |
[paste.app_factory] |
| 33 |
main = central_library.config.middleware:make_app |
| 34 |
|
| 35 |
[paste.app_install] |
| 36 |
main = pylons.util:PylonsInstaller |
| 37 |
""", |
| 38 |
) |