Marty Oehme
bea6c0eca5
Program can now be invoked through poetry for development purposes, invoke as follows from main directory: `poetry run move`. Alternatively, can still be invoked via `python run.py <nomie-json>` and now via `./run.py <nomie-json>` which uses system default python installation. For now both commands are only mainly useful from the poetry development virtual environment itself.
18 lines
374 B
TOML
18 lines
374 B
TOML
[tool.poetry]
|
|
name = "habitmove"
|
|
version = "0.3.1"
|
|
description = "migrate nomie data to loop habits tracker"
|
|
authors = ["Marty Oehme <marty.oehme@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[tool.poetry.scripts]
|
|
habitmove = "run:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|