| Line | |
|---|
| 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='debexpo', |
|---|
| 10 | version="", |
|---|
| 11 | #description='', |
|---|
| 12 | #author='', |
|---|
| 13 | #author_email='', |
|---|
| 14 | #url='', |
|---|
| 15 | scripts=['bin/debexpo-importer'], |
|---|
| 16 | install_requires=[ |
|---|
| 17 | "Pylons>=0.9.6.1", |
|---|
| 18 | "SQLAlchemy>=0.4.6", |
|---|
| 19 | "Webhelpers>=0.6.1", |
|---|
| 20 | "Babel"], |
|---|
| 21 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 22 | include_package_data=True, |
|---|
| 23 | test_suite='nose.collector', |
|---|
| 24 | package_data={'debexpo': ['i18n/*/LC_MESSAGES/*.mo']}, |
|---|
| 25 | message_extractors = {'debexpo': [ |
|---|
| 26 | ('**.py', 'python', None), |
|---|
| 27 | ('templates/**.mako', 'mako', None), |
|---|
| 28 | ('public/**', 'ignore', None)]}, |
|---|
| 29 | entry_points=""" |
|---|
| 30 | [paste.app_factory] |
|---|
| 31 | main = debexpo.config.middleware:make_app |
|---|
| 32 | |
|---|
| 33 | [paste.app_install] |
|---|
| 34 | main = pylons.util:PylonsInstaller |
|---|
| 35 | """, |
|---|
| 36 | ) |
|---|