-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (44 loc) · 1.07 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
[project]
name = "cratekeeper"
version = "1.0.0"
description = "DJ library management CLI — classify, analyze, tag, and organize your music crates"
requires-python = ">=3.11"
dependencies = [
"spotipy>=2.24.0",
"tidalapi>=0.8.1",
"typer>=0.12.0",
"rich>=13.0.0",
"questionary>=2.0.0",
"requests>=2.31.0",
"mutagen>=1.47.0",
"thefuzz[speedup]>=0.22.0",
"psycopg2-binary>=2.9.0",
"pyyaml>=6.0",
"essentia-tensorflow>=2.1b6.dev1389; platform_system != 'Windows'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.8.0",
"build>=1.0.0",
]
[project.scripts]
crate = "cratekeeper.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cratekeeper"]
[tool.hatch.build.targets.wheel.shared-data]
[tool.hatch.build]
include = [
"cratekeeper/**/*.py",
"cratekeeper/data/*.yaml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]