56e5af4d45722ecfa4e22f7fb0d1938fd2d1229d
[zzz-floof.git] / setup.py
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='floof',
10 version='0.1',
11 description='',
12 author='',
13 author_email='',
14 url='',
15 install_requires=[
16 'routes>=1.11', # for submapper
17 "Pylons>=0.9.7",
18 "SQLAlchemy>=0.5",
19 "elixir>=0.6",
20 'python-openid',
21 'shabti',
22 'wtforms',
23 ],
24 setup_requires=["PasteScript>=1.6.3"],
25 packages=find_packages(exclude=['ez_setup']),
26 include_package_data=True,
27 test_suite='nose.collector',
28 package_data={'floof': ['i18n/*/LC_MESSAGES/*.mo']},
29 #message_extractors={'floof': [
30 # ('**.py', 'python', None),
31 # ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
32 # ('public/**', 'ignore', None)]},
33 zip_safe=False,
34 paster_plugins=['Elixir', 'PasteScript', 'Pylons', 'Shabti'],
35 entry_points="""
36 [paste.app_factory]
37 main = floof.config.middleware:make_app
38
39 [paste.app_install]
40 main = pylons.util:PylonsInstaller
41 """,
42 )