-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
55 lines (48 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "yafti"
version = "0.10.0"
description = "Yet another first time installer"
authors = ["Marco Ceppi <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
homepage = "https://github.com/ublue-os/yafti"
repository = "https://github.com/ublue-os/yafti"
classifiers = [
"Environment :: X11 Applications :: GTK",
"Framework :: AsyncIO",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Software Distribution",
]
[tool.poetry.scripts]
yafti = "yafti.__main__:app"
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.8.2"
pygobject = "^3.42.2"
pyyaml = "^6.0"
gbulb = "^0.6.4"
rich = "^13.3.2"
typer = ">=0.7"
[tool.poetry.plugins."yafti.plugin"]
"yafti.plugin.flatpak" = "yafti.plugin.flatpak:Flatpak"
"yafti.plugin.run" = "yafti.plugin.run:Run"
"run" = "yafti.plugin.run:Run"
[tool.poetry.plugins."yafti.screen"]
"yafti.screen.title" = "yafti.screen.title:TitleScreen"
"yafti.screen.package" = "yafti.screen.package:PackageScreen"
"yafti.screen.console" = "yafti.screen.console:ConsoleScreen"
"yafti.screen.consent" = "yafti.screen.consent:ConsentScreen"
[tool.poetry.group.dev.dependencies]
black = ">=23.1,<25.0"
isort = "^5.12.0"
pytest = ">=7.2.1,<9.0.0"
ruff = ">=0.0.254,<0.3.5"
coverage = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-asyncio = ">=0.20.3,<0.24.0"
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"