-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.57 KB
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
[tool.poetry]
name = "qlient-core"
version = "1.0.1"
description = "The core for a blazingly fast and modern graphql client designed with simplicity in mind."
authors = ["Daniel Seifert <info@danielseifert.ch>"]
maintainers = ["Daniel Seifert <info@danielseifert.ch>"]
readme = "README.md"
license = "MIT"
homepage = "https://qlient-org.github.io/python-qlient-core/site/"
repository = "https://github.com/qlient-org/python-qlient-core"
documentation = "https://qlient-org.github.io/python-qlient-core/site/"
keywords = ["graphql", "client", "api", "query", "mutation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
packages = [
{ include = "qlient", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = "^4.11.4"
[tool.poetry.dev-dependencies]
coverage = "^6.4.2"
pytest = "^7.1.2"
pytest-asyncio = "^0.19.0"
pytest-cov = "^3.0.0"
black = "^22.3.0"
strawberry-graphql = "^0.121.0"
mkdocs = "^1.3.1"
mkdocs-material = "^8.3.9"
pytest-mock = "^3.8.2"
mkdocs-include-markdown-plugin = "^3.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"