-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.26 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
71
[project]
name = "disk-tree"
version = "0.1.0"
description = "Disk/Cloud space usage analyzer"
readme = "README.md"
authors = [{name = "Ryan Williams", email = "ryan@runsascoded.com"}]
license = {text = "Apache License 2.0"}
requires-python = ">=3.11"
dependencies = [
"click",
"flask",
"flask-cors",
"flask-sqlalchemy",
"humanize",
"kaleido",
"pandas",
"plotly",
"pyarrow",
"python-dateutil",
"sqlalchemy",
"tqdm",
"utz",
]
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
]
mem = [
"memray",
]
[project.scripts]
disk-tree = "disk_tree.cli.main:cli"
disk-tree-server = "disk_tree.server:main"
[dependency-groups]
dev = [
"pytest",
]
[tool.uv.sources]
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["disk_tree"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
".claude/",
".idea/",
".venv/",
"screenshots/",
"tmp/",
"ui/node_modules/",
"*.iml",
]
[tool.hatch.build.targets.wheel]
packages = ["src/disk_tree"]
# Include built UI assets in the wheel (if they exist)
# Run `cd ui && pnpm build` before building the wheel
[tool.hatch.build.targets.wheel.force-include]
"ui/dist" = "disk_tree/static"