This repository has been archived by the owner on Apr 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
75 lines (67 loc) · 2.17 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
74
75
#!/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-ariadne-jwt',
version=get_version('django_ariadne_jwt'),
license='MIT',
description='JSON Web Token for Django Ariadne',
long_description='\n\n'.join(get_long_description()),
author='marco-btree',
author_email='[email protected]',
maintainer='marco-btree',
url='https://github.com/binarytree-software/django-ariadne-jwt',
project_urls=OrderedDict((
(
'Issues',
'https://github.com/binarytree-software/django-ariadne-jwt/issues'
),
)),
packages=find_packages(exclude=['tests*']),
install_requires=[
'ariadne>=0.6.0',
'Django>=2.0.0',
'PyJWT>=1.5.0',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'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',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
],
zip_safe=False,
tests_require=[
'ariadne>=0.6.0',
'Django>=2.0.0',
'PyJWT>=1.5.0',
],
package_data={
'ardiadne_django_jwt': [
'locale/*/LC_MESSAGES/django.po',
'locale/*/LC_MESSAGES/django.mo',
],
},
)