-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.08 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mininterface"
version = "0.7.3"
description = "A minimal access to GUI, TUI, CLI and config"
authors = ["Edvard Rejthar <edvard.rejthar@nic.cz>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/CZ-NIC/mininterface"
readme = "README.md"
[tool.poetry.dependencies]
# Minimal requirements
python = "^3.10"
tyro = "0.8.14" # NOTE: 0.9 brings some test breaking changes
typing_extensions = "*"
pyyaml = "*"
# Standard requirements
autocombobox = "1.4.2"
humanize = "*" # used only in the TkInterface, hence it is not a minimal requirement
textual = "~0.84"
tkinter-tooltip = "*"
tkinter_form = "0.2.1"
tkscrollableframe = "*"
[tool.poetry.extras]
web = ["textual-serve"]
img = ["pillow", "textual_imageview"]
tui = ["textual_imageview"]
gui = ["pillow", "tkcalendar"]
all = ["textual-serve", "pillow", "tkcalendar", "textual_imageview"]
[tool.poetry.scripts]
mininterface = "mininterface.__main__:main"
[tool.poetry.dev-dependencies]
attrs = "*"
pydantic = "*"