hostapps/pyproject.toml

24 lines
464 B
TOML
Raw Normal View History

2022-05-28 14:14:08 -05:00
[tool.poetry]
name = "hostapps"
version = "0.1.0"
description = ""
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
[tool.poetry.dependencies]
python = "^3.10"
2023-03-24 09:51:57 -05:00
pynetbox = "^7.0.1"
2022-05-28 14:14:08 -05:00
click = "^8.1.3"
2023-03-24 09:51:57 -05:00
[tool.poetry.group.dev.dependencies]
2023-03-30 14:19:13 -05:00
black = "^23.3.0"
2023-03-24 09:51:57 -05:00
flake8 = "^6.0.0"
2022-05-28 14:14:08 -05:00
[tool.poetry.scripts]
hostapps-update = "hostapps.update:main"
hostapps-run = "hostapps.run:main"
2023-03-24 09:51:57 -05:00
2022-05-28 14:14:08 -05:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"