]> asedeno.scripts.mit.edu Git - bluechips.git/blobdiff - setup.py
Convert the README to rST, since that's what distutils wants.
[bluechips.git] / setup.py
index 1eb8594c88dba035383ad957a26ffd310e64bdf9..b645da77ece589378a9c75908327bdb3b01d82d5 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,5 @@
+#!/usr/bin/python
+
 try:
     from setuptools import setup, find_packages
 except ImportError:
@@ -7,12 +9,17 @@ except ImportError:
 
 setup(
     name='BlueChips',
-    version='',
+    version='1.0a1',
     description='BlueChips - finances for people with shared expenses',
     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",
+                      "WebHelpers==0.6.4",
+                      "SQLAlchemy>=0.4.1",
+                      "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,
@@ -30,5 +37,8 @@ setup(
 
     [paste.app_install]
     main = pylons.util:PylonsInstaller
+    
+    [paste.filter_app_factory]
+    fakeauth = bluechips.lib.fake_auth:FakeAuth
     """,
 )