2024-06-29 12:14:18 +00:00
|
|
|
[project]
|
|
|
|
name = "dockge_cli"
|
|
|
|
version = "0.0.1-a.1"
|
|
|
|
dependencies = [
|
2024-07-02 16:09:56 +00:00
|
|
|
"pyyaml~=6.0.1",
|
|
|
|
"pydantic~=2.8.0",
|
|
|
|
"python-socketio~=5.11.3",
|
|
|
|
"websocket-client~=1.8.0",
|
|
|
|
"tabulate ~=0.9.0",
|
2024-06-29 12:14:18 +00:00
|
|
|
]
|
|
|
|
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",
|
|
|
|
]
|
|
|
|
|
2024-06-29 15:41:09 +00:00
|
|
|
[project.scripts]
|
2024-07-02 16:09:56 +00:00
|
|
|
dockge-cli = "dockge_cli.dockge_cli:cli"
|
|
|
|
dockge = "dockge_cli.dockge_cli:cli"
|
2024-06-29 15:41:09 +00:00
|
|
|
|
2024-06-29 12:14:18 +00:00
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["."]
|
|
|
|
include = ["dockge_cli*"]
|
|
|
|
|
|
|
|
[tool.pylint."MAIN"]
|
2024-07-02 16:09:56 +00:00
|
|
|
disable = [ "line-too-long", "missing-module-docstring", "missing-function-docstring", "missing-class-docstring" ]
|
2024-06-29 12:14:18 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools >= 61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|