habitmove/pyproject.toml

24 lines
530 B
TOML
Raw Normal View History

2021-08-26 19:57:49 +00:00
[tool.poetry]
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-06 21:37:23 +00:00
importlib-metadata = {version = "^1.0", python = "<3.8"}
2021-08-26 19:57:49 +00:00
python = "^3.9"
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-08-26 19:57:49 +00:00
[tool.poetry.scripts]
2021-12-06 21:37:23 +00:00
habitmove = "habitmove.cli:main"
2021-08-26 19:57:49 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"