-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 996 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 996 Bytes
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
[project]
name = "LiveMood"
version = "0.0.1a0"
description = "Metadata server for streaming platforms"
authors = [{ name = "ii7mood", email = "me@ii7mood.com" }]
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn",
"httpx",
"peewee",
"pydantic",
"sse-starlette"
]
[project.optional-dependencies]
dev = ["pytest", "faker", "rstr"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["LiveMood", "LiveMood.*"]
[tool.setuptools.package-data]
LiveMood = ["**/*.toml"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(name)s: %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_file = "tests/test.log"
log_file_level = "DEBUG"
log_file_format = "%(asctime)s [%(levelname)8s] %(filename)s:%(lineno)d: %(message)s"
log_file_date_format = "%Y-%m-%d %H:%M:%S"