-
Notifications
You must be signed in to change notification settings - Fork 146
/
setup.py
32 lines (30 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import socialregistration
METADATA = dict(
name='django-socialregistration',
version=socialregistration.__version__,
author='Alen Mujezinovic',
author_email='alen@caffeinehit.com',
description='Django app providing registration through a variety of APIs',
long_description=open('README.rst').read(),
url='http://github.com/flashingpumpkin/django-socialregistration',
keywords='django facebook twitter oauth openid registration foursquare '\
'linkedin github oauth2',
install_requires=['oauth2', 'python-openid', 'mock'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
packages=find_packages(exclude=('tests*',)),
)
if __name__ == '__main__':
setup(**METADATA)