30 lines
640 B
TOML
30 lines
640 B
TOML
[project]
|
|
name = "clibard"
|
|
version = "0.1.0"
|
|
description = "See all your notifications in the terminal"
|
|
authors = [
|
|
{ name = "nojhan", email = "nojhan@nojhan.net" },
|
|
]
|
|
readme = "README.md"
|
|
|
|
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"]
|
|
|