dockge-cli/pyproject.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2024-06-29 12:14:18 +00:00
[project]
name = "dockge_cli"
2024-07-03 18:52:14 +00:00
version = "0.0.1-a.2"
2024-06-29 12:14:18 +00:00
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*"]
2024-07-03 18:50:19 +00:00
[tool.setuptools.package-data]
"*" = ["descriptors.json"]
2024-06-29 12:14:18 +00:00
[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"