X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=setup.py;h=018018662ec1eae7da795cdabc8a157fb07ae49b;hb=8bfdfc2600a85b1b8935f434bce64dc3c5cbfc06;hp=1eb8594c88dba035383ad957a26ffd310e64bdf9;hpb=f387c4b3e8d802d1f516a0a5cf1c36efd908b59a;p=bluechips.git diff --git a/setup.py b/setup.py index 1eb8594..0180186 100755 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +#!/usr/bin/python + try: from setuptools import setup, find_packages except ImportError: @@ -12,7 +14,8 @@ setup( 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"], + install_requires=["Pylons>=0.9.6", "SQLAlchemy>=0.4.1", "tw.forms>=0.9.1", + "AuthKit>=0.4.0"], setup_requires=["PasteScript==dev,>=1.6.3dev-r7326"], packages=find_packages(exclude=['ez_setup']), include_package_data=True, @@ -30,5 +33,8 @@ setup( [paste.app_install] main = pylons.util:PylonsInstaller + + [paste.filter_app_factory] + fakeauth = bluechips.lib.fake_auth:FakeAuth """, )