Mercurial > hg > bitsyauth
comparison setup.py @ 14:372a913c1051
peg to some sane version of the insane markup package
author | k0s <k0scist@gmail.com> |
---|---|
date | Wed, 03 Mar 2010 10:17:01 -0500 |
parents | 16c33fd5fb20 |
children | 9aa73d2d5aa8 |
comparison
equal
deleted
inserted
replaced
13:b6d63e78d396 | 14:372a913c1051 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 | 2 |
3 version = '0.1.1' | 3 version = '0.1.2' |
4 | 4 |
5 setup(name='bitsyauth', | 5 setup(name='bitsyauth', |
6 version=version, | 6 version=version, |
7 description="form + digest auth middleware", | 7 description="form + digest auth middleware", |
8 long_description="""\ | 8 long_description="""\ |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
17 include_package_data=True, | 17 include_package_data=True, |
18 zip_safe=False, | 18 zip_safe=False, |
19 install_requires=['Paste', | 19 install_requires=['Paste', |
20 'PasteScript', | 20 'PasteScript', |
21 'markup', | 21 'markup', # TO DEPRECATE |
22 'skimpygimpy', | 22 'skimpygimpy', |
23 ], | 23 ], |
24 dependency_links=['https://svn.openplans.org/svn/standalone/markup#egg=markup', | 24 dependency_links=[ |
25 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', | 25 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', |
26 ], | 26 ], |
27 entry_points=""" | 27 entry_points=""" |
28 | 28 |
29 """, | 29 """, |