ports/pyproject.toml
cătălin 3a4c8ea2fa
Some checks failed
continuous-integration/drone/push Build is failing
ci: make pylint hook local
2022-10-17 17:59:27 +02:00

47 lines
814 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"
pre-commit = "^2.20.0"
pylint = "^2.15.4"
[tool.poetry.group.test.dependencies]
ward = "^0.66.1b0"
ward-coverage = "^0.1.5"
[tool.poetry.group.ci.dependencies]
pip-versions = "^0.1.0"
sh = "^1.14.3"
python-decouple = "^3.6"
[tool.ward]
hook_module = ["ward_coverage"]
[tool.mypy]
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"