-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 899 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 899 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
45
46
47
48
49
50
[project]
name = "tvmux"
description = "terminal multiplexer recorder"
version = "0.6.0"
authors = [
{ name = "Gareth Davidson", email = "gaz@bitplane.net" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.2",
"pydantic>=2.11",
"fastapi>=0.109",
"uvicorn>=0.27",
"httpx>=0.25",
"psutil>=5.9",
"asciinema>=2.4",
"requests>=2.0",
"tomli>=1.2.0",
"tomli-w>=1.0.0",
"textual>=5.2.0",
"textual-asciinema>=0.0.3"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"coverage",
"pytest-cov",
"build",
"twine",
"ruff",
"pydoc-markdown"
]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.format]
docstring-code-format = true
[project.scripts]
tvmux = "tvmux.cli.main:cli"