-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 911 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 = "groupick"
version = "1.1.2-3"
description = "Assign options to groups in the terminal with a simple GUI. Based on wong2's pick"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "gc-av", email = "gc-av.dev@pm.me" },
{ name = "wong2", email = "wonderfuly@gmail.com" },
]
keywords = ["terminal", "gui", "pick", "group", "assign"]
requires-python = ">=3.10"
dependencies = ["anytree>=2.8,<3.0"]
[project.optional-dependencies]
dev = ["pytest>=7.2.0,<8.0.0"]
[project.urls]
Homepage = "https://github.com/gc-av/groupick"
Repository = "https://github.com/gc-av/groupick"
[tool.poetry.dependencies]
python = ">=3.10"
windows-curses = { version = "~2.2.0", platform = "win32" }
[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
mypy = "^1.0"
pre-commit = "^3.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"