-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathpyproject.toml
81 lines (75 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "graphql-core"
version = "3.2.6"
description = """
GraphQL-core is a Python port of GraphQL.js,\
the JavaScript reference implementation for GraphQL."""
license = "MIT"
authors = [
"Christoph Zwerschke <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/graphql-python/graphql-core"
repository = "https://github.com/graphql-python/graphql-core"
documentation = "https://graphql-core-3.readthedocs.io/"
keywords = ["graphql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
packages = [
{ include = "graphql", from = "src" },
{ include = "tests", format = "sdist" },
{ include = "docs", format = "sdist" },
{ include = '.bumpversion.cfg', format = "sdist" },
{ include = '.coveragerc', format = "sdist" },
{ include = '.editorconfig', format = "sdist" },
{ include = '.flake8', format = "sdist" },
{ include = '.mypy.ini', format = "sdist" },
{ include = '.readthedocs.yaml', format = "sdist" },
{ include = 'poetry.lock', format = "sdist" },
{ include = 'tox.ini', format = "sdist" },
{ include = 'setup.cfg', format = "sdist" },
{ include = 'setup.py', format = "sdist" },
{ include = 'CODEOWNERS', format = "sdist" },
{ include = 'MANIFEST.in', format = "sdist" },
{ include = 'SECURITY.md', format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.6"
typing-extensions = [
{ version = ">=4.1,<5", python = "<3.10" }
]
[tool.black]
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311', 'py312', 'py313']
[tool.pyright]
reportIncompatibleVariableOverride = false
reportMissingTypeArgument = false
reportUnknownArgumentType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnnecessaryIsInstance = false
reportUnknownVariableType = false
ignore = ["**/test_*"] # test functions
[tool.pylint.basic]
max-module-lines = 2000
[tool.pylint.messages_control]
disable = [
"method-hidden",
"missing-module-docstring", # test modules
"redefined-outer-name",
"unused-variable", # test functions
]
[build-system]
requires = ["poetry_core>=1,<3", "setuptools>=59,<76"]
build-backend = "poetry.core.masonry.api"