hostapps/pyproject.toml
2023-10-30 15:48:40 -05:00

38 lines
803 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.2.0"
click = "^8.1.7"
pydantic = "^2.4.2"
pyansi = { git = "https://git.ocjtech.us/jeff/pyansi" }
#pyansi = { path = "/home/jeff/dev/pyansi", develop = true }
requests = "^2.31.0"
[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.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"