habitmove/pyproject.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2021-08-26 19:57:49 +00:00
[tool.poetry]
name = "habitmove"
version = "0.4.1"
2021-08-26 19:57:49 +00:00
description = "migrate nomie data to loop habits tracker"
license="GPL-3.0-only"
readme="README.md"
repository="https://git.martyoeh.me/Marty/habit-migrate"
2021-08-26 19:57:49 +00:00
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
2021-12-06 21:37:23 +00:00
packages = [
{ include = "habitmove", from = "src"},
]
2021-08-26 19:57:49 +00:00
[tool.poetry.dependencies]
importlib-metadata = {version = "^0.23", python = "<3.8"}
python = "^3.7"
2021-12-06 21:37:23 +00:00
click = "^8.0"
2021-08-26 19:57:49 +00:00
[tool.poetry.dev-dependencies]
2021-12-06 22:20:18 +00:00
pytest = "^6.2"
2021-12-06 22:36:24 +00:00
coverage = {extras = ["toml"], version = "^6.2"}
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
2021-08-26 19:57:49 +00:00
[tool.poetry.scripts]
2021-12-06 21:37:23 +00:00
habitmove = "habitmove.cli:main"
2021-12-06 22:36:24 +00:00
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["habitmove"]
[tool.coverage.report]
show_missing = true
# fail_under = 80 # if we want pytest to automatically fail if not enough tests supplied
2021-08-26 19:57:49 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = [
"click",
"click.testing",
"pytest",
"nox",
"importlib-metadata"
]
ignore_missing_imports = true