-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (53 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
78 lines (53 loc) · 1.44 KB
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
71
72
73
74
75
76
77
78
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "backend"
description = "The API for statusmc.perchun.it (statusmc.perchun.it/api)."
version = "0.1.0"
license = "MIT"
authors = ["Perchun Pak <statusmc@perchun.it>"]
readme = "README.md"
repository = "https://github.com/StatusMC/backend"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
mcstatus = { git = "https://github.com/py-mine/mcstatus", rev = "58afaecc07ac0f11685aac0f5c9fea826e18e863" }
fastapi = "~0.111"
pydantic = "~1"
uvicorn = { extras = ["standart"], version = "~0.30" }
omegaconf = "~2.3"
# caching utils
cachetools = "~5.3"
asyncache = "~0.3"
loguru = "~0.7"
sentry-sdk = "~2.3"
[tool.poetry.group.make.dependencies]
black = "~23"
isort = "~5.12"
pycln = "~2.4"
cruft = "~2.14"
lice = "~0.6" # for generating template
pre-commit = "~3.5"
[tool.poetry.group.typing.dependencies]
mypy = "~1.7"
[tool.poetry.group.tests.dependencies]
pytest = "~7.4"
pytest-cov = "~4.1"
pytest-mock = "~3.12"
pytest-randomly = "~3.15"
Faker = "~20.1"
[tool.poetry.group.github_hooks]
optional = true
[tool.poetry.group.github_hooks.dependencies]
requests = "~2.31"
GitPython = "~3.1"
[tool.poetry.group.types.dependencies]
types-pyyaml = "^6.0.12.9"
types-cachetools = "^5.3.0.5"
[tool.poetry.group.docker]
optional = true
[tool.poetry.group.docker.dependencies]
dumb-init = "~1.2"
[tool.black]
line-length = 120
target-version = ['py38']