-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "term-desktop"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "edward-jazzhands", email = "ed.jazzhands@gmail.com" }
]
license = { text = "MIT" }
keywords = ["python", "textual", "tui", "window", "desktop", "shell", "multiplexer", "terminal", "cli", "command-line"]
dependencies = [
"ezpubsub>=0.2.0",
"textual>=5.3.0",
"textual-autocomplete>=4.0.4",
"textual-coloromatic>=1.0.0",
"textual-hires-canvas>=0.9.0",
"textual-pyfiglet>=1.0.0",
"textual-slidecontainer>=1.0.0",
"textual-window>=0.8.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
Repository = "https://github.com/edward-jazzhands/term-desktop"
Changelog = "https://github.com/edward-jazzhands/term-desktop/blob/master/CHANGELOG.md"
[dependency-groups]
dev = [
"basedpyright>=1.31.2",
"black>=25.1.0",
"mypy>=1.15.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"ruff>=0.11.11",
"textual-dev>=1.7.0",
"tomli>=2.2.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
term-desktop = "term_desktop.main:run"
[tool.black]
line-length = 110
[tool.mypy]
pretty = true
strict = true
disallow_untyped_defs = true
disallow_untyped_calls = true
[tool.basedpyright]
include = ["src"]
typeCheckingMode = "strict"
[tool.pytest.ini_options]
asyncio_mode = "auto"