forked from KundaPanda/strawberry-django-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (67 loc) · 1.79 KB
/
pyproject.toml
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
[tool.poetry]
name = "strawberry-django-jwt"
version = "0.1.7"
description = "Strawberry-graphql port of the graphene-django-jwt package"
license = "MIT"
authors = ["Vojtěch Dohnal <[email protected]>"]
maintainers = []
readme = "README.md"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
]
packages = [
{ include = "strawberry_django_jwt" }
]
[tool.poetry.dependencies]
python = "^3.7"
Django = "^3.0"
PyJWT = ">=1.7.1,<3.0"
strawberry-graphql = ">=0.69.0,<0.90.0"
strawberry-graphql-django = "^0.2.5"
django-admin-display = "^1.3.0"
packaging = ">=20.0,<30.0"
importlib-metadata = {version = "^1.7.0", python = "<=3.7"}
[tool.poetry.dev-dependencies]
cryptography = "^35.0"
coverage = "^6.1"
pytest = "^6.2"
pytest-cov = "^3.0"
pytest-django = "^4.0.0"
nox = "^2021.0.0"
types-cryptography = "^3.0.0"
django-stubs = "^1.9.0"
django-mock-queries = "^2.1.7"
types-mock = "^4.0.0"
types-jwt = "^0.1.0"
types-pkg-resources = "^0.1.0"
pre-commit = "^2.15.0"
pre-commit-hooks = "^4.0.0"
autopep8 = "^1.1"
darglint = "^1.5.0"
mypy = "^0.910"
safety = "^1.0"
pylint = "^2.11.1"
poetry = "^1.1.10"
djangorestframework-stubs = "^1.4.0"
djangorestframework = "^3.12.4"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
DJANGO_SETTINGS_MODULE = "tests.example_app.settings"
python_files = "tests.py test_*.py *_tests.py"
[tool.poetry.urls]
"Homepage" = "https://github.com/KundaPanda/strawberry-django-jwt/"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"