-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
38 lines (34 loc) · 972 Bytes
/
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
[tool.poetry]
name = "wagtail-graphql"
version = "0.2.1"
description = "An app to automatically add GraphQL support to a Wagtail website"
license = "MIT"
readme = "README.md"
authors = [
"Tiago Requeijo <tiago.requeijo.dev@gmail.com>"
]
repository = "https://github.com/tr11/wagtail-graphql"
homepage = "https://github.com/tr11/wagtail-graphql"
keywords = ['wagtail', 'graphql', 'api', 'wagtail-graphql']
[tool.poetry.dependencies]
python = "~3.6||~3.7"
graphene_django = "^2.2"
graphene_django_optimizer = "^0.3.5"
wagtail = "^2.3"
wagtailmenus = {version = "^2.12", optional = true}
python-dateutil = "^2.6"
[tool.poetry.extras]
menus = ["wagtailmenus"]
[tool.poetry.dev-dependencies]
pytest = "^4.0"
pytest-django = "^3.4"
pytest-cov = "^2.6"
flake8 = "^3.6"
pytest-pythonpath = "^0.7.3"
mypy = "^0.670.0"
pytest-flake8 = "^1.0"
pytest-mypy = "^0.3.2"
django-cors-headers = "^2.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"