X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=setup.py;h=a42edbb229ef79f2648e8f6048ba4bb5715b8393;hb=82ad8466cea54eb777e71bb1a74798461461598b;hp=248a650b8defff79887f6cfc18939d41e93a9ef5;hpb=acccaf1c26b247e15d6fe5e10658548cc4718295;p=bluechips.git diff --git a/setup.py b/setup.py index 248a650..a42edbb 100755 --- a/setup.py +++ b/setup.py @@ -9,24 +9,32 @@ except ImportError: setup( name='BlueChips', - version='', + version='1.0.0', description='BlueChips - finances for people with shared expenses', + long_description=open('README.rst').read(), author='Residents of Blue Sun Corporate Headquarters', author_email='chips@blue-sun-corp.com', - #url='', + url='http://github.com/ebroder/bluechips', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Framework :: Pylons', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Natural Language :: English', + 'Topic :: Home Automation', + 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', + 'Topic :: Office/Business :: Financial :: Accounting', + ], install_requires=["Pylons>=0.9.6", - "SQLAlchemy>=0.4.1", + "WebHelpers==0.6.4", + "SQLAlchemy>=0.5", "AuthKit>=0.4.0", - "FormEncode>=1.2.1"], + "FormEncode>=1.2.1", + "mailer>=0.5"], setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"], packages=find_packages(exclude=['ez_setup']), include_package_data=True, test_suite='nose.collector', - package_data={'bluechips': ['i18n/*/LC_MESSAGES/*.mo']}, - #message_extractors = {'bluechips': [ - # ('**.py', 'python', None), - # ('templates/**.mako', 'mako', None), - # ('public/**', 'ignore', None)]}, zip_safe=False, paster_plugins=['PasteScript', 'Pylons'], entry_points=""" @@ -35,8 +43,5 @@ setup( [paste.app_install] main = pylons.util:PylonsInstaller - - [paste.filter_app_factory] - fakeauth = bluechips.lib.fake_auth:FakeAuth """, )