25 lines
441 B
TOML
25 lines
441 B
TOML
[tool.poetry]
|
|
name = "waf"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["n.diaz <nestor@freepress.coop>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
arrow = "^1.3.0"
|
|
peewee = "^3.17.8"
|
|
path = "^17.0.0"
|
|
rich = "^13.9.4"
|
|
pyyaml = "^6.0.2"
|
|
click = "^8.1.7"
|
|
requests = "^2.32.3"
|
|
pyufw = "^0.0.3"
|
|
|
|
[tool.poetry.scripts]
|
|
waf = "waf:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|