forked from PedroBern/django-graphql-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (63 loc) · 2.14 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
#!/usr/bin/env python
import io
import os
import re
from collections import OrderedDict
from setuptools import find_packages, setup
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)
tests_require = [
"pytest>=3.6.3",
"pytest-cov>=2.4.0",
"pytest-django>=3.1.2",
"coveralls",
]
dev_requires = ["black==19.3b0", "flake8==3.7.7"] + tests_require
setup(
name="django-graphql-auth",
version=get_version("graphql_auth"),
license="MIT",
description="Graphql and relay authentication with Graphene for Django.",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
author="pedrobern",
author_email="[email protected]",
maintainer="pedrobern",
url="https://github.com/PedroBern/django-graphql-auth",
project_urls=OrderedDict(
(
("Documentation", "https://django-graphql-auth.readthedocs.io/en/latest/"),
("Issues", "https://github.com/PedroBern/django-graphql-auth/issues"),
)
),
packages=find_packages(exclude=["tests*"]),
install_requires=[
"Django>=2.2.0",
"django-graphql-jwt==0.3.0",
"django-filter>=2.2.0",
"graphene_django>=2.1.8",
"graphene>=2.1.8",
"PyJWT<2.0.0",
],
tests_require=tests_require,
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
],
keywords="api graphql rest relay graphene auth",
zip_safe=False,
include_package_data=True,
extras_require={"test": tests_require, "dev": dev_requires},
)