-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 959 Bytes
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
[project]
name = "wisdom-tree"
dynamic = ["version"]
authors = [{name = "HACKER097"}]
description = "A terminal productivity application which lets you set pomodoro timers, show random quotes, and play music while a tree grows."
keywords = ["productivity", "pomodoro", "terminal", "focus"]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"python-vlc>=3.0.21203",
"pytubefix>=9.2.0",
"requests>=2.32.4",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.12.0",
"ty>=0.0.1a11",
]
[project.scripts]
wisdom-tree = "wisdom_tree.main:run"
[tool.hatch.build]
include = [
"src/wisdom_tree/**/*.py",
"src/wisdom_tree/res/*",
"src/wisdom_tree/qts.txt"
]
exclude = [
"*.pyc",
"__pycache__/",
]
artifacts = ["src/wisdom_tree/res/"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/wisdom_tree"]