feat: add basefiles

This commit is contained in:
cătălin 2022-10-05 09:22:11 +02:00
commit 865186f10b
Signed by: catalin
GPG key ID: 0178DF42F43E5FD2
16 changed files with 1154 additions and 0 deletions

40
pyproject.toml Normal file
View file

@ -0,0 +1,40 @@
[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"