Skip to content

Commit

Permalink
Added simple setup.py for use in Pinax
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Willison <simon@simonwillison.net>
  • Loading branch information
jezdez authored and Simon Willison committed May 5, 2009
1 parent 5d42251 commit f509b84
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages

setup(
name='django-openid',
version='0.1.0',
description='OpenID tools for Django',
author='Simon Willison',
author_email='simon@simonwillison.net',
url='http://code.google.com/p/django-openid/',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools', 'python-openid'],
)

0 comments on commit f509b84

Please sign in to comment.