-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.44 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
[tool.poetry]
name = "pygraphic"
version = "0.0"
description = "Client-side GraphQL query generator based on Pydantic"
authors = ["Dmitry Semenov <[email protected]>"]
repository = "https://github.com/lonelyteapot/pygraphic"
license = "MIT"
readme = "README.md"
keywords = [
"graphql-query-generator", "graphql-codegen", "graphql", "query", "pydantic"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = ["pygraphic/py.typed"]
[tool.poetry.urls]
"Examples" = "https://github.com/lonelyteapot/pygraphic/tree/main/examples"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^1.9.1"
inflection = "^0.5.1"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
mypy = "^0.961"
flake8 = "^4.0.1"
bandit = "^1.7.4"
isort = "^5.10.1"
pytest = "^7.1.2"
requests = "^2.28.1"
types-requests = "^2.28.3"
pytest-cov = "^3.0.0"
[tool.poetry-dynamic-versioning]
enable = true
[tool.black]
line-length = 88
[tool.isort]
src_paths = ["pygraphic", "tests"]
profile = "black"
indent = 4
combine_star = true
combine_as_imports = true
lines_after_imports = 2
[tool.mypy]
plugins = "strawberry.ext.mypy_plugin"
[build-system]
requires = ["poetry>=1.2.0b1", "poetry-dynamic-versioning-plugin"]
build-backend = "poetry.masonry.api"