-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.03 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "SimmerTheToads"
description = """Simmer The Toads aims to refine playlists of varying artists
and genres to gradually transition from various music styles to create a cohesive
listening experience."""
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"flask ~= 2.2.2",
"flask-cors ~= 3.0.10",
"flask-session2 ~= 1.3.1",
"joblib ~= 1.2.0",
"matplotlib ~= 3.6.3",
"networkx ~= 3.0",
"numpy ~= 1.24.1",
"pandas ~= 1.5.3",
"pytest ~= 7.2.2",
"pytest-mock ~= 3.10.0",
"python-dotenv ~= 0.21.1",
"scikit-learn ~= 1.2.1",
"scipy ~= 1.10.0",
"seaborn ~= 0.12.2",
"spotipy ~= 2.22.0",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["SimmerTheToads"]
[tool.setuptools.dynamic]
version = { attr = "SimmerTheToads.version.__version__" }
[tool.pydocstyle]
add_ignore = ["D107"]