-
Notifications
You must be signed in to change notification settings - Fork 96
/
pyproject.toml
64 lines (58 loc) · 1.4 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
[tool.poetry]
name = "Clairvoyance"
version = "2.5.3"
description = "Obtain GraphQL API Schema even if the introspection is not enabled"
authors = [
"Nikita Stupin <[email protected]>",
"Swan <[email protected]>"
]
maintainers = [
"Nikita Stupin <[email protected]>",
"Antoine Carossio <[email protected]>",
"Swan <[email protected]>",
"QuentinN42 <[email protected]>"
]
license = "MIT"
packages = [
{ include = "clairvoyance" }
]
include = [
"clairvoyance/wordlist.txt"
]
readme = "README.md"
"homepage" = "https://github.com/nikitastupin/clairvoyance"
"repository" = "https://github.com/nikitastupin/clairvoyance"
[tool.poetry.scripts]
clairvoyance = 'clairvoyance:cli'
[tool.coverage.run]
omit = [
'tests/*',
'examples/*',
'docs/*',
]
[tool.pytest.ini_options]
filterwarnings = [ "ignore:::aiounittest" ]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
asyncio = "^3.4.3"
aiohttp = {extras = ["speedups"], version = "^3.8.1"}
rich = "^13.3.1"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
aiounittest = "^1.4.2"
black = "^24.4"
docformatter = "^1.4"
isort = "^5.10.1"
mypy = "^0.950"
poetryup = "^0.3.15"
pylint = "^2.13.9"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
pytest-mock = "^3.8.2"
setuptools = "^45"
unify = "^0.5"
vulture = "^2.5"
yamllint = "^1.27.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"