-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (39 loc) · 1.03 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
[project]
name = "strawberry-github-bot"
version = "0.1.0"
description = ""
authors = [{ name = "Patrick Arminio", email = "[email protected]" }]
dependencies = ["strawberry-graphql", "uvicorn", "starlette", "httpx", "mypy"]
requires-python = ">=3.8,<4.0"
readme = "README.md"
license = { text = "MIT" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
include_trailing_comma = true
use_parentheses = true
ensure_newline_before_comments = true
force_grid_wrap = 0
line_length = 88
multi_line_output = 3
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"flake8<4.0.0,>=3.8.4",
"black<21.0,>=20.8b1",
"isort<6.0.0,>=5.7.0",
"taskipy<2.0.0,>=1.6.0",
"pdbpp>=0.10.3",
]
[tool.pdm.scripts]
dev.env = { "GITHUB_TOKEN" = "demo", "SKIP_TOKEN_CHECK" = "true" }
dev.cmd = "python main.py --reload"
start = "uvicorn main:app --reload --port ${PORT} --host 0.0.0.0"
[tool.pdm.build]
includes = []
[tool.ruff]
line-length = 88
select = ["ALL"]
ignore = ["D", "ANN101"]
target-version = "py311"