forked from flavors/django-graphql-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (65 loc) · 2.29 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
71
72
73
#!/usr/bin/env python
import io
import os
import re
from collections import OrderedDict
from setuptools import find_packages, setup
def get_long_description():
for filename in ('README.rst',):
with io.open(filename, 'r', encoding='utf-8') as f:
yield f.read()
def get_version(package):
with io.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-jwt',
version=get_version('graphql_jwt'),
license='MIT',
description='JSON Web Token for Django GraphQL',
long_description='\n\n'.join(get_long_description()),
author='mongkok',
author_email='[email protected]',
maintainer='mongkok',
url='https://github.com/flavors/django-graphql-jwt',
project_urls=OrderedDict((
('Documentation', 'https://django-graphql-jwt.domake.io'),
('Issues', 'https://github.com/flavors/django-graphql-jwt/issues'),
)),
packages=find_packages(exclude=['tests*']),
install_requires=[
'Django>=1.11',
'graphene-django>=2.0.0',
'graphql-core>=2.1,<3',
'PyJWT>=1.5.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 :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
],
zip_safe=False,
package_data={
'graphql_jwt': [
'locale/*/LC_MESSAGES/django.po',
'locale/*/LC_MESSAGES/django.mo',
'refresh_token/locale/*/LC_MESSAGES/django.po',
'refresh_token/locale/*/LC_MESSAGES/django.mo',
],
},
)