hostapps/pyproject.toml

38 lines
803 B
TOML
Raw Permalink 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]
2023-10-30 13:59:27 -05:00
python = "^3.11"
2023-10-18 20:26:59 -05:00
pynetbox = "^7.2.0"
click = "^8.1.7"
2023-10-29 21:33:23 -05:00
pydantic = "^2.4.2"
pyansi = { git = "https://git.ocjtech.us/jeff/pyansi" }
#pyansi = { path = "/home/jeff/dev/pyansi", develop = true }
2023-10-30 15:48:40 -05:00
requests = "^2.31.0"
2022-05-28 14:14:08 -05:00
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"
2023-04-09 11:51:16 -05:00
isort = "^5.12.0"
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"