-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.08 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 = "summary"
version = "0.1.0"
description = ""
authors = ["Kirill Klenov <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
aiofile = "*"
uvicorn = "*"
aiosqlite = "*"
muffin = "*"
muffin-rest = { extras = ["peewee"], version = "*" }
muffin-peewee-aio = "*"
muffin-admin = "*"
muffin-jinja2 = "*"
muffin-apiclient = { extras = ["httpx"], version = "*" }
blackboxprotobuf = "*"
youtube-transcript-api = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ipdb = "^0"
pre-commit = "^3"
pytest-aio = "^1"
pytest-mypy = "*"
# pytest-socket = "*"
ruff = "^0"
[tool.mypy]
check_untyped_defs = true
exclude = ["summary/config"]
ignore_missing_imports = true
install_types = true
non_interactive = true
packages = ["summary"]
[tool.pytest.ini_options]
addopts = "summary -xslv"
muffin_app = "summary"
muffin_config = "summary.config.tests"
python_files = "*test*.py"
filterwarnings = ["ignore::DeprecationWarning", "ignore::UserWarning"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"