]> asedeno.scripts.mit.edu Git - bluechips.git/blob - setup.py
018018662ec1eae7da795cdabc8a157fb07ae49b
[bluechips.git] / setup.py
1 #!/usr/bin/python
2
3 try:
4     from setuptools import setup, find_packages
5 except ImportError:
6     from ez_setup import use_setuptools
7     use_setuptools()
8     from setuptools import setup, find_packages
9
10 setup(
11     name='BlueChips',
12     version='',
13     description='BlueChips - finances for people with shared expenses',
14     author='Residents of Blue Sun Corporate Headquarters',
15     author_email='chips@blue-sun-corp.com',
16     #url='',
17     install_requires=["Pylons>=0.9.6", "SQLAlchemy>=0.4.1", "tw.forms>=0.9.1",
18                       "AuthKit>=0.4.0"],
19     setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"],
20     packages=find_packages(exclude=['ez_setup']),
21     include_package_data=True,
22     test_suite='nose.collector',
23     package_data={'bluechips': ['i18n/*/LC_MESSAGES/*.mo']},
24     #message_extractors = {'bluechips': [
25     #        ('**.py', 'python', None),
26     #        ('templates/**.mako', 'mako', None),
27     #        ('public/**', 'ignore', None)]},
28     zip_safe=False,
29     paster_plugins=['PasteScript', 'Pylons'],
30     entry_points="""
31     [paste.app_factory]
32     main = bluechips.config.middleware:make_app
33
34     [paste.app_install]
35     main = pylons.util:PylonsInstaller
36     
37     [paste.filter_app_factory]
38     fakeauth = bluechips.lib.fake_auth:FakeAuth
39     """,
40 )