24 lines
595 B
TOML
24 lines
595 B
TOML
[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"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^21.12b0"
|
|
pytest = "^6.2.5"
|
|
mypy = "^0.931"
|
|
pytest-mypy = "^0.8.1"
|
|
pytest-black = "^0.3.12"
|
|
pytest-cov = "^3.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--black --mypy --cov elite_engineering --cov-report xml:reports/coverage.xml --cov-fail-under=100"
|