-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (42 loc) · 1.01 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "python-gql"
authors = [
{name = "YuSUN", email = "[email protected]"},
]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = [
"graphql-core >=3.1.5",
]
[project.urls]
Documentation = "https://graphite.teletraan.io"
Source = "https://github.com/syfun/python-gql"
[project.scripts]
ge = "graphite.contrib.cli.main:app"
[project.optional-dependencies]
dev = [
"flake8 ==3.9.2",
"black ==21.5b1",
"isort ==5.8.0",
"pre-commit ==2.13.0",
"pytest ==6.2.4",
]
[tool.flit.module]
name = "gql"
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.isort] # https://black.readthedocs.io/en/stable/compatible_configs.html#isort
profile = "black"
skip_gitignore = true
indent = " "
no_lines_before = "LOCALFOLDER"
combine_as_imports = true
[tool.pyright]
reportGeneralTypeIssues = false
[tool.pytest.ini_options]
testpaths = ["tests"]