dockge-cli/pyproject.toml
Firq bcafbeb3cf
All checks were successful
/ backend-pylint (push) Successful in 9s
Initial Commit
2024-06-29 14:14:18 +02:00

29 lines
768 B
TOML

[project]
name = "dockge_cli"
version = "0.0.1-a.1"
dependencies = [
"pyyaml~=6.0.1"
]
requires-python = ">= 3.10"
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
description = "CLi for interacting with dockge"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dockge_cli*"]
[tool.pylint."MAIN"]
disable = [ "line-too-long", "missing-module-docstring" ]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"