[973dd91] | 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='sipbmp3-web', |
---|
| 10 | version='0.1', |
---|
| 11 | description='', |
---|
| 12 | author='', |
---|
| 13 | author_email='', |
---|
| 14 | #url='', |
---|
| 15 | install_requires=[ |
---|
| 16 | "TurboGears2", |
---|
| 17 | "ToscaWidgets >= 0.9.1", |
---|
| 18 | "zope.sqlalchemy", |
---|
| 19 | |
---|
| 20 | "repoze.what-quickstart", |
---|
| 21 | ], |
---|
| 22 | setup_requires=["PasteScript>=1.6.3"], |
---|
| 23 | paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'tg.devtools'], |
---|
| 24 | packages=find_packages(exclude=['ez_setup']), |
---|
| 25 | include_package_data=True, |
---|
| 26 | test_suite='nose.collector', |
---|
| 27 | tests_require=['WebTest', 'BeautifulSoup'], |
---|
| 28 | package_data={'sipbmp3web': ['i18n/*/LC_MESSAGES/*.mo', |
---|
| 29 | 'templates/*/*', |
---|
| 30 | 'public/*/*']}, |
---|
| 31 | message_extractors = {'sipbmp3web': [ |
---|
| 32 | ('**.py', 'python', None), |
---|
| 33 | ('templates/**.mako', 'mako', None), |
---|
| 34 | ('templates/**.html', 'genshi', None), |
---|
| 35 | ('public/**', 'ignore', None)]}, |
---|
| 36 | |
---|
| 37 | entry_points=""" |
---|
| 38 | [paste.app_factory] |
---|
| 39 | main = sipbmp3web.config.middleware:make_app |
---|
| 40 | |
---|
| 41 | [paste.app_install] |
---|
| 42 | main = pylons.util:PylonsInstaller |
---|
| 43 | """, |
---|
| 44 | ) |
---|