-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 757 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 757 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
[project]
name = "tmux-iterm-command"
version = "0.1.0"
description = "Tmux command tool for coding agents to manage tmux windows and panes"
readme = "README.md"
requires-python = ">=3.8"
authors = [{name = "Developer", email = "developer@example.com"}]
dependencies = [
"libtmux>=0.31.0",
"click>=8.1.7",
"pydantic>=2.5.0",
"typing-extensions>=4.8.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.9",
"mypy>=1.7.0",
]
[project.scripts]
tmux-iterm-command = "tmux_iterm_command.cli:run"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]