This repository has been archived on 2026-04-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hf-cli/pyproject.toml
demus 02667c9ebb Log to journal if JOURNAL_STREAM env var is set
Replace 'journal' with 'console'
Always log to console when nit logging to journal in addition to any file logging
2025-02-08 23:14:07 +01:00

42 lines
713 B
TOML

[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hf-cli"
version = "1.2.2"
description = "Huafetcher CLI"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"argcomplete",
"requests",
"psutil",
"systemd-python",
"pyxdg >= 0.28"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[dependency-groups]
test = [
"pytest"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = [ 'hf_cli*']
exclude = ["tests*"]
namespaces = false
[tool.setuptools.package-data]
hf_cli = ["*.json"]
[project.scripts]
hf-cli = "hf_cli.main:run"