-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 852 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
[tool.poetry]
name = "graphene-resolver"
version = "0.1.10"
description = "Using mongoose-like schema to write apollo-like resolver for graphene."
authors = ["NateScarlet <NateScarlet@Gmail.com>"]
readme = "README.md"
repository = "https://github.com/NateScarlet/graphene-resolver"
documentation = "https://natescarlet.github.io/graphene-resolver/"
classifiers = [
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[tool.poetry.dependencies]
python = "^3.6"
graphene = "^2.1"
isodate = "^0.7.0"
lazy-object-proxy = "^1.4"
phrases-case = "^0.1.1"
dataclasses = {version="~0.8", python = "~3.6"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8"
autopep8 = "^1.4"
rope = "^0.23"
pylint = "^2.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"