-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.62 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/playlistsmith"]
[project]
name = "playlistsmith"
version = "0.0.1"
authors = [
{ name="Julian Wuth", email="julian.wuth@yahoo.de" },
]
description = "Package to create playlists from track lists."
readme = "README.md"
requires-python = ">=3.12,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"scipy",
"umap-learn",
"httpx",
]
[project.optional-dependencies]
dev = [
"pandas-stubs",
"mypy",
"pytest",
"pytest-httpx",
"pytest-cov",
]
gui = [
"streamlit>=1.33",
"plotly>=5.18",
"matplotlib",
]
[project.scripts]
playlistsmith-gui = "playlistsmith.gui:main"
[project.urls]
Homepage = "https://github.com/Programming-The-Next-Step-2026/playlistsmith"
Issues = "https://github.com/Programming-The-Next-Step-2026/playlistsmith/issues"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.mypy]
exclude = ["src/playlistsmith/gui/"]
[[tool.mypy.overrides]]
module = ["sklearn.*", "umap", "umap.*"]
ignore_missing_imports = true
# The GUI subpackage is a thin Streamlit shell and pulls in untyped
# third-party libraries (plotly, parts of streamlit). It's excluded from
# the strict mypy run via `tool.mypy.exclude` above; this override also
# silences mypy if the exclusion is bypassed (e.g. `mypy <file>`).
[[tool.mypy.overrides]]
module = ["playlistsmith.gui.*"]
ignore_errors = true