ports/pyproject.toml
2022-10-05 09:22:11 +02:00

40 lines
691 B
TOML

[tool.poetry]
name = "ports"
version = "0.1.0"
description = ""
authors = ["cătălin <catalin@roboces.dev>"]
readme = "README.md"
[tool.poetry.scripts]
ports = "ports.main:app"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.6.1"
psutil = "^5.9.2"
rich = "^12.5.1"
[tool.poetry.group.linters.dependencies]
black = "^22.8.0"
[tool.poetry.group.test.dependencies]
ward = "^0.66.1b0"
ward-coverage = "^0.1.5"
[tool.ward]
hook_module = ["ward_coverage"]
[tool.mypy]
python_version = 3.9
warn_return_any = false
no_warn_no_return = true
[tool.pylint.main]
disable = 'missing-module-docstring'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"