Mercurial > hg > bitsyauth
comparison setup.py @ 30:0bf52646061b
example/persona.html example/persona.py setup.py
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Fri, 27 Dec 2013 11:24:23 -0800 |
| parents | 9aa73d2d5aa8 |
| children | 6af220013aa1 |
comparison
equal
deleted
inserted
replaced
| 29:1bcb72011872 | 30:0bf52646061b |
|---|---|
| 1 from setuptools import setup, find_packages | 1 from setuptools import setup |
| 2 | 2 |
| 3 version = '0.1.2' | 3 version = '0.1.2' |
| 4 | 4 |
| 5 setup(name='bitsyauth', | 5 setup(name='bitsyauth', |
| 6 version=version, | 6 version=version, |
| 11 keywords='auth', | 11 keywords='auth', |
| 12 author='Jeff Hammel', | 12 author='Jeff Hammel', |
| 13 author_email='k0scist@gmail.com', | 13 author_email='k0scist@gmail.com', |
| 14 url='http://k0s.org/hg/bitsyauth', | 14 url='http://k0s.org/hg/bitsyauth', |
| 15 license='GPL', | 15 license='GPL', |
| 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 16 packages=['bitsyauth'], |
| 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', # TO DEPRECATE | 21 'markup', # TO DEPRECATE |
| 22 'skimpygimpy', | 22 'skimpygimpy', |
| 23 'PyBrowserID', | 23 'PyBrowserID', |
| 24 'WebOb', | |
| 24 ], | 25 ], |
| 25 dependency_links=[ | 26 dependency_links=[ |
| 26 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', | 27 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', |
| 27 ], | 28 ], |
| 28 entry_points=""" | 29 entry_points=""" |
