-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.02 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
#!/usr/bin/env
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from os import path
def read(name):
return open(path.join(path.dirname(__file__), name)).read()
setup(
name='django-facebook-auth-helper',
version='0.1.6',
description="Django implementation for Facebook authentication.",
long_description=read("README.rst"),
url="https://github.com/pinetree408/django-facebook-auth",
maintainer="Sangyoon Lee",
maintainer_email="[email protected]",
author='Sangyoon Lee',
author_email='[email protected]',
license='MIT License',
install_requires=[
'Django>=2.2.24',
],
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'django_facebook_auth',
],
keywords='django facebook authentication',
)