-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 836 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
[project]
name = "progress-watchdog"
version = "0.1.5"
description = "Progress Watchdog is a Python package that helps you avoid staying stuck or getting tunnel vision while time flows by."
readme = "README.md"
authors = [
{ name = "Chris Patti", email = "feoh@feoh.org" }
]
requires-python = ">=3.13"
dependencies = [
"playsound>=1.3.0",
"pynput>=1.8.0",
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
progress-watchdog = "progress_watchdog:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["."]
include = ["progress_watchdog"]
[tool.setuptools.package-data]
my_sound_package = ["sounds/*.mp3", "sounds/*.wav"]