-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.34 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "procmux"
version = '2.0.1'
readme = "README.md"
requires-python = ">=3.9.6"
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
authors = [
{name = "Nick Pisani", email = "[email protected]"},
]
description = 'a TUI utility for running multiple commands in parallel in easily switchable terminals'
dependencies = [
"hiyapyco==0.5.1",
"prompt-toolkit==2.0.10",
"ptterm==0.2",
"pyte==0.8.1",
"pytest==7.1.3",
]
# [project.scripts]
# procmux = "procmux:start_cli"
[project.urls]
homepage = "https://github.com/napisani/procmux"
repository = "https://github.com/napisani/procmux"
documentation = "https://github.com/napisani/procmux"
# [tool.uv]
# package = true
# [tool.hatch.version]
# path = "procmux/__init__.py" # If you keep the version info within the module, otherwise adjust accordingly
[tool.hatch.build.targets.sdist]
include = ["procmux/**", "pyproject.toml"]
# [tool.hatch.envs.default]
# dependencies = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["procmux"]
[project.scripts]
procmux = "procmux:start_cli"