forked from jhnnsrs/turms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (61 loc) · 1.63 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
[tool.poetry]
name = "turms"
version = "0.5.0"
description = "graphql-codegen powered by pydantic"
authors = ["jhnnsrs <jhnnsrs@gmail.com>"]
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 = "^1.9.0"
PyYAML = ">=5.3.0"
black = { version = "^22.1.0", optional = true }
isort = { version = "^5.10.1", optional = true }
libcst = { version = "^0.4.9", optional = true }
rich-click = ">=1.6"
watchfiles = "^0.18.1"
[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"
strawberry-graphql = "^0.151.0"
libcst = "^0.4.9"
requests = "^2.28.1"
[tool.poetry.extras]
watch = ["watchdog"]
black = ["black"]
isort = ["isort"]
merge = ["libcst"]
[tool.poetry.scripts]
turms = "turms.cli.main:cli"
[tool.poetry.group.dev.dependencies]
libcst = "^0.4.9"
ruff = "^0.0.257"
pytest-snapshot = "^0.9.0"
[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"