hostapps/pyproject.toml
2023-04-09 11:51:16 -05:00

30 lines
591 B
TOML

[tool.poetry]
name = "hostapps"
version = "0.1.0"
description = ""
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
[tool.poetry.dependencies]
python = "^3.11"
pynetbox = "^7.0.1"
click = "^8.1.3"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
[tool.poetry.scripts]
hostapps-update = "hostapps.update:main"
hostapps-run = "hostapps.run:main"
[tool.isort]
profile = "black"
force_single_line = true
from_first = false
force_sort_within_sections = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"