2021-08-26 19:57:49 +00:00
|
|
|
[tool.poetry]
|
2021-09-30 15:19:29 +00:00
|
|
|
name = "habitmove"
|
2021-12-06 21:37:23 +00:00
|
|
|
version = "0.4.0"
|
2021-08-26 19:57:49 +00:00
|
|
|
description = "migrate nomie data to loop habits tracker"
|
|
|
|
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]
|
2021-12-15 13:58:06 +00:00
|
|
|
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"
|
2021-12-15 13:58:06 +00:00
|
|
|
pytest-mock = "^3.6.1"
|
2021-08-26 19:57:49 +00:00
|
|
|
|
2021-09-30 15:19:29 +00:00
|
|
|
[tool.poetry.scripts]
|
2021-12-06 21:37:23 +00:00
|
|
|
habitmove = "habitmove.cli:main"
|
2021-09-30 15:19:29 +00:00
|
|
|
|
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"
|