-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (46 loc) · 1.45 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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "timeline-kun"
dynamic = ["version"]
description = "An integrated graphical interface tool for planning and executing experimental protocols."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
authors = [{ name = "Eigo Nishimura" }]
license = { file = "LICENSE" }
keywords = ["experiment", "protocol", "timer", "GUI", "timeline"]
dependencies = [
"soundfile>=0.13.1",
"sounddevice>=0.5.1",
"ttkthemes>=3.2.2",
"bleak>=0.22.3",
]
[dependency-groups]
dev = [
"pyinstaller>=6.11.0",
"pyinstaller-versionfile>=2.1",
"pytest>=8.3",
]
[tool.uv]
exclude-newer = "30 days"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[project.urls]
Homepage = "https://github.com/nishimura5/timeline_kun"
Repository = "https://github.com/nishimura5/timeline_kun"
[project.scripts]
timeline-kun = "timeline_kun.cli:main"
# Launch as a GUI application (do not show a console window on Windows)
[project.gui-scripts]
timeline-kun-gui = "timeline_kun.cli:main"
[tool.hatch.version]
path = "src/timeline_kun/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/timeline_kun"]
# Include only the files required for sdist (exclude unnecessary files)
[tool.hatch.build.targets.sdist]
include = ["src/timeline_kun", "README.md", "LICENSE"]