]> asedeno.scripts.mit.edu Git - bluechips.git/blob - setup.py
Add an action for registering a new user.
[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",
18                       "WebHelpers==0.6.4",
19                       "SQLAlchemy>=0.4.1",
20                       "AuthKit>=0.4.0",
21                       "FormEncode>=1.2.1",
22                       "mailer>=0.5"],
23     setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"],
24     packages=find_packages(exclude=['ez_setup']),
25     include_package_data=True,
26     test_suite='nose.collector',
27     package_data={'bluechips': ['i18n/*/LC_MESSAGES/*.mo']},
28     #message_extractors = {'bluechips': [
29     #        ('**.py', 'python', None),
30     #        ('templates/**.mako', 'mako', None),
31     #        ('public/**', 'ignore', None)]},
32     zip_safe=False,
33     paster_plugins=['PasteScript', 'Pylons'],
34     entry_points="""
35     [paste.app_factory]
36     main = bluechips.config.middleware:make_app
37
38     [paste.app_install]
39     main = pylons.util:PylonsInstaller
40     
41     [paste.filter_app_factory]
42     fakeauth = bluechips.lib.fake_auth:FakeAuth
43     """,
44 )