-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.28 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
[project]
name = "beets-statistics"
description = "Generate insights into your music collection with beets"
readme = "README.md"
version = "0.0.1"
requires-python = ">=3.13,<4"
license = "GPL v3"
license-files = ["LICENSE.md"]
authors = [
{name = "Philip guerda Gillißen"},
]
maintainers = [
{name = "Philip guerda Gillißen"},
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Environment :: No Input/Output (Daemon)",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Typing :: Typed",
]
dependencies = [
"fastapi[standard]==0.136.1",
"pyyaml==6.0.3",
"jinja2==3.1.6",
"humanize==4.15.0",
"pydantic==2.13.3",
"pydantic-settings==2.14.0",
"logfmter==0.0.12",
]
[project.urls]
Source = "https://github.com/guerda/beets-statistics/"
Issues = "https://github.com/guerda/beets-statistics/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[dependency-groups]
dev = [
"ruff==0.15.11",
"pytest==9.0.3",
"pip-audit==2.10.0",
"ty>=0.0.28",
]
[tool.uv]
package = false
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[tool.ruff.lint]
select = [
"I", # isort
]