This commit is contained in:
phluxjr
2026-04-25 18:58:59 -05:00
parent ea96e4fa0e
commit 60904dd5a6
3 changed files with 866 additions and 0 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "confy-tui"
version = "2.1.2"
description = "a config manager for linux/unix systems"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.8"
dependencies = []
[project.urls]
Homepage = "https://github.com/Phluxjr23/confy"
Repository = "https://github.com/Phluxjr23/confy"
[project.scripts]
confy = "confy.main:main"
[tool.hatch.build.targets.wheel]
packages = ["confy"]