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]
|
2024-05-14 14:44:33 -05:00
|
|
|
python = "^3.12"
|
2024-09-21 15:55:32 -05:00
|
|
|
pynetbox = "^7.4.0"
|
2023-10-18 20:26:59 -05:00
|
|
|
click = "^8.1.7"
|
2024-09-21 16:35:21 -05:00
|
|
|
pydantic = "2.8.2"
|
|
|
|
# pyansi = { git = "https://git.ocjtech.us/jeff/pyansi" }
|
2023-10-29 21:33:23 -05:00
|
|
|
#pyansi = { path = "/home/jeff/dev/pyansi", develop = true }
|
2022-05-28 14:14:08 -05:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
hostapps-update = "hostapps.update:main"
|
|
|
|
hostapps-run = "hostapps.run:main"
|
|
|
|
|
2023-10-29 21:33:23 -05:00
|
|
|
[tool.black]
|
|
|
|
max-line-length = 120
|
|
|
|
|
2023-04-09 11:51:16 -05:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
2023-10-29 21:33:23 -05:00
|
|
|
line_length = 120
|
2023-04-09 11:51:16 -05:00
|
|
|
force_single_line = true
|
|
|
|
from_first = false
|
|
|
|
force_sort_within_sections = true
|
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"
|