-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.3 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
from setuptools import setup, find_packages
version = '0.1.1'
setup(name='django-openid-consumer',
version=version,
description="django-openid-consumer is a simple consumer only openid implementation for django",
long_description="""
django-openid-consumer aims to do only one thing, simple OpenID auth (with all the extension s python-openid supports) for comments on blogs and similar. It doesen't aim to provide any further integration (like for example tighter integration with auth) with Django.
""",
keywords='django openid consumer',
author='Matjaz Crnko',
author_email='[email protected]',
url='http://code.google.com/p/django-openid-consumer/',
license='BSD',
include_package_data=True,
zip_safe=False,
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'python-openid',
'Django',
],
)