39 lines
740 B
TOML
39 lines
740 B
TOML
[tool.poetry]
|
|
name = "halig"
|
|
version = "0.1.1"
|
|
description = ""
|
|
authors = ["cătălin <185504a9@duck.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.scripts]
|
|
halig = "halig.main:app"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
typer = "^0.6.1"
|
|
rich = "^12.5.1"
|
|
sh = "^1.14.3"
|
|
pydantic = "^1.9.1"
|
|
PyYAML = "^6.0"
|
|
seedir = "^0.3.1"
|
|
pytest-mock = "^3.8.2"
|
|
returns = "^0.19.0"
|
|
|
|
|
|
[tool.poetry.group.linters.dependencies]
|
|
black = "^22.6.0"
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest-mock = "^3.8.2"
|
|
pytest-cov = "^3.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ['--maxfail=1', '-rf', "--cov=halig", '--junitxml=report.xml']
|
|
|
|
[tool.coverage.run]
|
|
omit = [".venv/**"]
|