-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1013 Bytes
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
[tool.ariadne-codegen]
schema_path = "schema.graphql"
queries_path = "queries/"
target_package_name = "fragment_graphql_client"
[tool.poetry]
name = "fragment-python"
version = "0.5.4"
description = "Python SDK for https://fragment.dev/"
authors = ["Fragment Foundries Inc"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "fragment"}]
[tool.poetry.dependencies]
python = "^3.10"
ariadne-codegen = "^0.17.2"
requests-oauth2client = "^1.6.0"
pydantic = "^2.8.0"
httpx = "^0.28.1"
authlib = "^1.6.6"
graphql-core = "^3.2.3"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.6"
black = "^24.8.0"
isort = "^5.13.2"
mypy = "^1.11.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fragment-python-client-codegen = 'fragment.codegen.main:run'
[tool.pylint.messages_control]
max-line-length = 88
disable = [
"missing-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-many-arguments",
]