forked from flavors/django-graphql-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
70 lines (62 loc) · 2.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
import os
import re
from setuptools import find_packages, setup
def get_long_description():
for filename in ('README.rst',):
with open(filename, 'r') as f:
yield f.read()
def get_version(package):
with open(os.path.join(package, '__init__.py')) as f:
pattern = r'^__version__ = [\'"]([^\'"]*)[\'"]'
return re.search(pattern, f.read(), re.MULTILINE).group(1)
setup(
name='django-graphql-social-auth',
version=get_version('graphql_social_auth'),
license='MIT',
description='Python Social Auth support for Django GraphQL',
long_description='\n\n'.join(get_long_description()),
author='mongkok',
author_email='domake.io@gmail.com',
maintainer='mongkok',
url='https://github.com/flavors/django-graphql-social-auth/',
packages=find_packages(exclude=['tests*']),
install_requires=[
'Django>=2.0',
'django-filter>=1.1.0',
'graphene-django>=2.1.5',
'social-auth-app-django>=2.1.0',
'django-graphql-jwt==0.4.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
],
zip_safe=False,
tests_require=[
'Django>=2.0',
'django-filter>=1.1.0',
'graphene-django>=2.1.5',
'social-auth-app-django>=2.1.0',
],
package_data={
'graphql_social_auth': [
'locale/*/LC_MESSAGES/django.po',
'locale/*/LC_MESSAGES/django.mo',
],
}
)