-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.46 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
[project]
name = "sysupdate"
dynamic = ["version"]
description = "A beautiful CLI system update manager for Linux with multi-distro support."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Dimosthenis Kaponis" }
]
keywords = ["cli", "system", "update", "apt", "dnf", "pacman", "flatpak", "snap", "terminal", "linux", "multi-distro", "fedora", "arch", "ubuntu", "debian"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
]
dependencies = [
"rich>=13.0.0,<15",
"aiohttp>=3.9.0,<4",
"packaging>=23.0,<25",
]
[project.scripts]
sysupdate = "sysupdate.__main__:main"
[build-system]
requires = ["hatchling>=1.21,<2", "hatch-vcs>=0.4,<1"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "sysupdate/_version.py"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=9.0.2,<10",
"pytest-asyncio>=1.3.0,<2",
"pytest-cov>=7.0.0",
"ruff>=0.15.6",
]
[tool.hatch.build.targets.wheel]
packages = ["sysupdate"]