forked from aidanlister/django-facebook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 796 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-facebook',
version='0.1',
description='Replace Django Authentication with Facebook',
long_description=open('README.md').read(),
author='Aidan Lister',
author_email='[email protected]',
url='http://github.com/aidanlister/django-facebook',
license='MPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)