dockge-cli/pyproject.toml
Firq d3e5d4ae56
All checks were successful
/ backend-pylint (push) Successful in 13s
/ build-artifacts (push) Successful in 8s
/ publish-artifacts (push) Successful in 20s
Improved typing, refactored code, fixed some issues
2024-07-04 22:12:36 +02:00

40 lines
1.1 KiB
TOML

[project]
name = "dockge_cli"
version = "0.0.1-c.1"
dependencies = [
"pyyaml~=6.0.1",
"pydantic~=2.8.0",
"python-socketio~=5.11.3",
"websocket-client~=1.8.0",
"tabulate ~=0.9.0",
]
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",
]
[project.scripts]
dockge-cli = "dockge_cli.dockge_cli:cli"
dockge = "dockge_cli.dockge_cli:cli"
[tool.setuptools.packages.find]
where = ["."]
include = ["dockge_cli*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.pylint."MAIN"]
disable = [ "line-too-long", "missing-module-docstring", "missing-function-docstring", "missing-class-docstring" ]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"