dockge-cli/pyproject.toml

62 lines
1.3 KiB
TOML
Raw Normal View History

2024-06-29 12:14:18 +00:00
[project]
name = "dockge_cli"
version = "0.1.0-c.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]
"*" = ["py.typed"]
2024-07-03 18:50:19 +00:00
2024-07-05 09:22:56 +00:00
[project.optional-dependencies]
2024-07-05 09:25:00 +00:00
lint = [
2024-07-05 09:22:56 +00:00
"pylint~=3.2.5",
2024-07-05 09:25:00 +00:00
]
typing = [
"mypy~=1.10.1",
2024-07-05 09:22:56 +00:00
"types-PyYAML~=6.0.12.20240311",
"types-tabulate~=0.9.0.20240106",
]
2024-06-29 12:14:18 +00:00
[tool.pylint."MAIN"]
2024-07-05 14:05:35 +00:00
disable = [
"line-too-long",
"missing-module-docstring",
]
2024-06-29 12:14:18 +00:00
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = 'socketio.*'
ignore_missing_imports = true
2024-06-29 12:14:18 +00:00
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"