try: from setuptools import setup, find_packages except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages setup( name='wradmin', version='2.0.0', description='Administrative Interface for Winterrodeln', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', url='http://www.winterrodeln.org/', install_requires=[ "Pylons>=1.0.2", "SQLAlchemy>=0.5", "Genshi>=0.4", # "MySQL-python>=1.2", # "AuthKit>=0.4.3,<=0.4.99", "lxml>=2.2", # "matplotlib>=0.9", # "mapnik", "Babel>=0.9", "wrpylib>=0.6.0", "webob", ], setup_requires=["PasteScript>=1.6.3"], packages=find_packages(exclude=['ez_setup']), include_package_data=True, test_suite='nose.collector', package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo']}, #message_extractors={'wradmin': [ # ('**.py', 'python', None), # ('public/**', 'ignore', None)]}, zip_safe=False, paster_plugins=['PasteScript', 'Pylons'], entry_points=""" [paste.app_factory] main = wradmin.config.middleware:make_app [paste.app_install] main = pylons.util:PylonsInstaller """, )