]> asedeno.scripts.mit.edu Git - bluechips.git/blob - setup.py
Fix some typos in the model
[bluechips.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='BlueChips',
10     version='',
11     description='BlueChips - finances for people with shared expenses',
12     author='Residents of Blue Sun Corporate Headquarters',
13     author_email='chips@blue-sun-corp.com',
14     #url='',
15     install_requires=["Pylons>=0.9.6", "SQLAlchemy>=0.4.1", "tw.forms>=0.9.1"],
16     setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"],
17     packages=find_packages(exclude=['ez_setup']),
18     include_package_data=True,
19     test_suite='nose.collector',
20     package_data={'bluechips': ['i18n/*/LC_MESSAGES/*.mo']},
21     #message_extractors = {'bluechips': [
22     #        ('**.py', 'python', None),
23     #        ('templates/**.mako', 'mako', None),
24     #        ('public/**', 'ignore', None)]},
25     zip_safe=False,
26     paster_plugins=['PasteScript', 'Pylons'],
27     entry_points="""
28     [paste.app_factory]
29     main = bluechips.config.middleware:make_app
30
31     [paste.app_install]
32     main = pylons.util:PylonsInstaller
33     """,
34 )