habitmove/pyproject.toml

24 lines
530 B
TOML

[tool.poetry]
name = "habitmove"
version = "0.4.0"
description = "migrate nomie data to loop habits tracker"
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
packages = [
{ include = "habitmove", from = "src"},
]
[tool.poetry.dependencies]
importlib-metadata = {version = "^1.0", python = "<3.8"}
python = "^3.9"
click = "^8.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
[tool.poetry.scripts]
habitmove = "habitmove.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"