-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
66 lines (59 loc) · 1.58 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
[tool.poetry]
name = "turms"
version = "0.5.0"
description = "graphql-codegen powered by pydantic"
authors = ["jhnnsrs <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "turms" }]
homepage = "https://jhnnsrs.github.io/turms"
repository = "https://github.com/jhnnsrs/turms"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed",
"Topic :: Utilities",
"Development Status :: 6 - Mature",
]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^11.0.0"
graphql-core = "^3.2.0"
pydantic = ">2"
PyYAML = ">=5.3.0"
black = { version = "^22.1.0", optional = true }
isort = { version = "^5.10.1", optional = true }
libcst = { version = "^1.4.0", optional = true }
rich-click = ">=1.6"
watchfiles = "^0.18.1"
pydantic-settings = "^2.5.2"
[tool.poetry.group.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"
strawberry-graphql = "^0.151.0"
libcst = "^1.4.0"
requests = "^2.28.1"
pytest-snapshot = "^0.9.0"
[tool.poetry.extras]
watch = ["watchdog"]
black = ["black"]
isort = ["isort"]
merge = ["libcst"]
[tool.poetry.scripts]
turms = "turms.cli.main:cli"
[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"