-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.41 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
[project]
name = "dj"
dynamic = ["version"]
requires-python = ">=3.11,<3.13"
dependencies = [
"pyrekordbox",
# detect
"rich>=13",
"instagrapi>=2.1",
"shazamio>=0.4",
"httpx>=0.27",
"curl_cffi>=0.7",
"python-dotenv>=1.0",
"yt-dlp>=2025.5",
"mutagen>=1.47",
"cryptography>=42",
"psutil>=5.9",
"browser-cookie3>=0.20",
# sync
"playwright>=1.58",
"playwright-stealth>=1.0",
]
[project.scripts]
dj = "dj_cli:main"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools]
py-modules = ["dj_cli", "paths", "caffeinate", "assets", "update", "doctor"]
[tool.setuptools.packages.find]
include = ["detect*", "sync*", "enrich*", "playlist*", "export*", "set*", "connections*", "djstudio*", "rekordbox*", "helpers*", "apps*", "vj*"]
[tool.setuptools.package-data]
# Read-only source files accessed by external tools (swiftc, node).
"connections.bridge" = ["*.swift"]
"enrich" = ["dj_studio_sdk.js"]
# Extension source (read-only, no npm at runtime).
"apps" = ["**/*.json", "**/*.js", "**/*.ts", "**/*.css", "**/*.html", "**/*.png", "**/*.svg"]
# Pre-built frontend assets (built by CI before wheel build).
"apps.course" = ["dist/**/*"]
"vj.cats" = ["dist/**/*"]
# VJ package.json for list_apps() discovery.
"vj" = ["**/package.json"]