-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (53 loc) · 1.4 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
[tool.coverage.run]
branch = true
omit = [
".venv/*",
"tests/*",
]
[tool.poetry]
name = "ariadne-django-ext"
version = "0.1.0"
description = "Usable utility extensions for Ariadne & Django"
authors = ["Dulmandakh <dulmandakh@gmail.com>"]
license = "MIT"
homepage = "https://github.com/dulmandakh/ariadne-django-ext"
repository = "https://github.com/dulmandakh/ariadne-django-ext"
keywords = ["django", "ariadne", "cache", "graphql"]
readme = "README.md"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
]
packages = [
{ include = "ariadne_django_ext"},
]
include = [
"LICENSE",
"README.md"
]
[tool.poetry.dependencies]
python = "^3.6.2"
[tool.poetry.dev-dependencies]
ariadne = "^0.13.0"
Django = "^3.2.7"
nox = "^2021.6.12"
pytest = "^6.2.5"
black = "^21.9b0"
flake8 = "^3.9.2"
pytest-django = "^4.4.0"
coverage = "^5.5"
isort = "^5.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"