Mercurial > hg > bitsyauth
comparison setup.py @ 0:284621b3effd
initial commit of bitsyauth, initially from bitsyblog
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 02 Nov 2009 21:37:40 -0500 |
parents | |
children | ec3c0343a8b5 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:284621b3effd |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 version = '0.0' | |
4 | |
5 setup(name='bitsyauth', | |
6 version=version, | |
7 description="form + digest auth middleware", | |
8 long_description="""\ | |
9 """, | |
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
11 keywords='auth', | |
12 author='Jeff Hammel', | |
13 author_email='k0scist@gmail.com', | |
14 url='http://k0s.org/hg/bitsyauth', | |
15 license='GPL', | |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
17 include_package_data=True, | |
18 zip_safe=False, | |
19 install_requires=['Paste', | |
20 'PasteScript', | |
21 'markup', | |
22 'skimpgimpy', | |
23 ], | |
24 dependency_links=['https://svn.openplans.org/svn/standalone/markup#egg=markup', | |
25 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', | |
26 ], | |
27 entry_points=""" | |
28 # -*- Entry points: -*- | |
29 | |
30 """, | |
31 ) |