X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=setup.py;h=d92890270d9355756b11e45e28cc611a45c9976a;hb=53c0833dd52f70a3f57f00b2dc2ca436dd76e94f;hp=1eb8594c88dba035383ad957a26ffd310e64bdf9;hpb=f387c4b3e8d802d1f516a0a5cf1c36efd908b59a;p=bluechips.git diff --git a/setup.py b/setup.py index 1eb8594..d928902 100755 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +#!/usr/bin/python + try: from setuptools import setup, find_packages except ImportError: @@ -7,21 +9,32 @@ except ImportError: setup( name='BlueChips', - version='', + version='1.0.3', 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='', - install_requires=["Pylons>=0.9.6", "SQLAlchemy>=0.4.1", "tw.forms>=0.9.1"], + 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", + "WebHelpers>=1.0a", + "SQLAlchemy>=0.5", + "AuthKit>=0.4.0", + "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="""