Replace 'journal' with 'console' Always log to console when nit logging to journal in addition to any file logging
42 lines
713 B
TOML
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"
|