-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 967 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
[project]
name = "pick"
version = "2.6.0"
description = "Pick an option in the terminal with a simple GUI"
authors = [
{name = "wong2", email = "wonderfuly@gmail.com"},
{name = "AN Long", email = "aisk1988@gmail.com"}
]
license = "MIT"
readme = "README.md"
keywords = ["terminal", "gui"]
requires-python = ">=3.8"
dependencies = [
"cadule>=0.0.1,<1.0.0",
"windows-curses>=2.2.0; platform_system=='Windows'",
]
[project.optional-dependencies]
blessed = ["blessed>=1.17.0"]
[project.urls]
Homepage = "https://github.com/aisk/pick"
Repository = "https://github.com/aisk/pick"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"mypy>=1.4",
"pre-commit>=3.5.0",
]
[tool.mypy]
check_untyped_defs = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = ["blessed", "cadule"]
ignore_missing_imports = true
[build-system]
requires = ["uv_build>=0.11.11,<0.13"]
build-backend = "uv_build"