X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=setup.py;h=4d745754f724f098f238a74e0baf0afbb13dad7d;hb=cd859ff2b7d001c7b3d53eb1be0d3a2c5164d4a7;hp=b645da77ece589378a9c75908327bdb3b01d82d5;hpb=3ee06adbfc667eb8629f93c0b93c22a87c5310e8;p=bluechips.git diff --git a/setup.py b/setup.py index b645da7..4d74575 100755 --- a/setup.py +++ b/setup.py @@ -9,11 +9,22 @@ except ImportError: setup( name='BlueChips', - version='1.0a1', + version='1.0a3', 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 :: 3 - Alpha', + '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==0.6.4", "SQLAlchemy>=0.4.1", @@ -24,11 +35,6 @@ setup( 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=""" @@ -37,8 +43,5 @@ setup( [paste.app_install] main = pylons.util:PylonsInstaller - - [paste.filter_app_factory] - fakeauth = bluechips.lib.fake_auth:FakeAuth """, )