-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.34 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
[tool.poetry]
name = "quiz"
version = "0.3.2"
description = "Capable GraphQL client"
authors = ["Arie Bovenberg <a.c.bovenberg@gmail.com>"]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "quiz", from = "src" },
]
readme = "README.rst"
include = ["CHANGELOG.rst", "README.rst"]
repository = "https://github.com/ariebovenberg/quiz"
keywords = [
"http",
"async",
"graphql",
]
[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = {version = "*", python = "<3.8"}
gentools = "^1.2.0"
snug = "^2.2.0"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
isort = "^5.11.5"
mypy = "^1.4"
pytest = "^7.4.4"
black = "^23.3.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
hypothesis = "^6.79.4"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
'''
[tool.isort]
line_length = 79
profile = 'black'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"