forked from jhnnsrs/turms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.1 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
[tool.poetry]
name = "turms"
version = "0.2.4"
description = "graphql-codegen powered by pydantic"
authors = ["jhnnsrs <[email protected]>"]
license = "CC BY-NC 3.0"
readme = "README.md"
packages = [{include = "turms"}]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^11.0.0"
graphql-core = "^3.2.0"
pydantic = "^1.9.0"
PyYAML = ">=5.3.0"
black = { version = "^22.1.0", optional = true }
watchdog = {version = "^2.1.6", optional = true}
astunparse = {version = "^1.6.3",python = ">=3.7,<3.9"}
isort = { version ="^5.10.1", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-aiohttp = "^0.3.0"
pytest-cov = "^3.0.0"
tox = "^3.24.5"
isort = "^5.10.1"
black = "^22.1.0"
pylint = "^2.12.2"
autoflake = "^1.4"
[tool.poetry.extras]
watch = ["watchdog"]
black = ["black"]
isort = ["isort"]
[tool.poetry.scripts]
turms = "turms.cli.main:entrypoint"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = [ "turms" ]
[tool.pydoc-markdown.renderer]
type = "docusaurus"
docs_base_path = "website/docs"