elite-engineering/pyproject.toml

26 lines
615 B
TOML
Raw Normal View History

2022-01-20 16:04:54 +00:00
[tool.poetry]
name = "elite-engineering"
version = "0.1.0"
description = "Tools for engineering in Elite Dangerous"
authors = ["Correl Roush <correl@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
2022-01-20 16:57:53 +00:00
returns = "^0.18.0"
2022-01-20 16:04:54 +00:00
[tool.poetry.dev-dependencies]
black = "^21.12b0"
pytest = "^6.2.5"
2022-01-20 17:09:49 +00:00
mypy = "^0.931"
pytest-mypy = "^0.8.1"
2022-01-20 17:14:23 +00:00
pytest-black = "^0.3.12"
pytest-cov = "^3.0.0"
2022-01-20 16:04:54 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
2022-01-20 17:09:49 +00:00
[tool.pytest.ini_options]
2022-01-20 17:14:23 +00:00
addopts = "--black --mypy --cov elite_engineering --cov-report xml:reports/coverage.xml --cov-fail-under=100"