]> asedeno.scripts.mit.edu Git - bluechips.git/blob - setup.py
We have pie charts.
[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='1.0.3',
13     description='BlueChips - finances for people with shared expenses',
14     long_description=open('README.rst').read(),
15     author='Residents of Blue Sun Corporate Headquarters',
16     author_email='chips@blue-sun-corp.com',
17     url='http://github.com/ebroder/bluechips',
18     classifiers=[
19         'Development Status :: 4 - Beta',
20         'Environment :: Web Environment',
21         'Framework :: Pylons',
22         'License :: OSI Approved :: GNU General Public License (GPL)',
23         'Natural Language :: English',
24         'Topic :: Home Automation',
25         'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
26         'Topic :: Office/Business :: Financial :: Accounting',
27         ],
28     install_requires=["Pylons>=0.9.6",
29                       "WebHelpers>=1.0a",
30                       "SQLAlchemy>=0.5",
31                       "AuthKit>=0.4.0",
32                       "FormEncode>=1.2.1",
33                       "mailer>=0.5"],
34     setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"],
35     packages=find_packages(exclude=['ez_setup']),
36     include_package_data=True,
37     test_suite='nose.collector',
38     zip_safe=False,
39     paster_plugins=['PasteScript', 'Pylons'],
40     entry_points="""
41     [paste.app_factory]
42     main = bluechips.config.middleware:make_app
43
44     [paste.app_install]
45     main = pylons.util:PylonsInstaller
46     """,
47 )