31 lines
691 B
TOML
31 lines
691 B
TOML
[tool.poetry]
|
|
name = "hostapps"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
pynetbox = "^7.4.0"
|
|
click = "^8.1.7"
|
|
pydantic = "2.8.2"
|
|
# pyansi = { git = "https://git.ocjtech.us/jeff/pyansi" }
|
|
#pyansi = { path = "/home/jeff/dev/pyansi", develop = true }
|
|
|
|
[tool.poetry.scripts]
|
|
hostapps-update = "hostapps.update:main"
|
|
hostapps-run = "hostapps.run:main"
|
|
|
|
[tool.black]
|
|
max-line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
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"
|