Added a watch/unwatch button to user pages.
[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 ],
23 setup_requires=["PasteScript>=1.6.3"],
24 packages=find_packages(exclude=['ez_setup']),
25 include_package_data=True,
26 test_suite='nose.collector',
27 package_data={'floof': ['i18n/*/LC_MESSAGES/*.mo']},
28 #message_extractors={'floof': [
29 # ('**.py', 'python', None),
30 # ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
31 # ('public/**', 'ignore', None)]},
32 zip_safe=False,
33 paster_plugins=['Elixir', 'PasteScript', 'Pylons', 'Shabti'],
34 entry_points="""
35 [paste.app_factory]
36 main = floof.config.middleware:make_app
37
38 [paste.app_install]
39 main = pylons.util:PylonsInstaller
40 """,
41 )