refactor: move to uv
instead of poetry
This commit is contained in:
parent
ddfe1c6eb6
commit
3e58cde2fe
3 changed files with 31 additions and 10 deletions
|
|
@ -1,15 +1,30 @@
|
|||
[tool.poetry]
|
||||
[project]
|
||||
name = "clibard"
|
||||
version = "0.1.0"
|
||||
description = "See all your notifications in the terminal"
|
||||
authors = ["nojhan <nojhan@nojhan.net>"]
|
||||
authors = [
|
||||
{ name = "nojhan", email = "nojhan@nojhan.net" },
|
||||
]
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
faker = "^0.7.4"
|
||||
humanize = "^4.11"
|
||||
rich = "^13.9"
|
||||
dbus-python = "^1.3"
|
||||
PyGObject = "^3.50" # You may need to install the system package for libgirepository1.0-dev
|
||||
requires-python = ">3.11"
|
||||
dependencies = [
|
||||
"faker>=0.7.4",
|
||||
"humanize>=4.11",
|
||||
"rich>=13.9",
|
||||
"dbus-python>=1.3",
|
||||
"PyGObject>=3.50", # You may need to install the system package for libgirepository-2.0-dev
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
clibard = "clibard.clibard:main"
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=68", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
include = ["clibard"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue