2023-11-05 20:16:47 +01:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "tailscalesd"
|
|
|
|
|
version = "0.1.0"
|
2023-11-06 09:13:21 +01:00
|
|
|
description = "Discover services to monitor with prometheus over tailscale"
|
2023-11-05 20:16:47 +01:00
|
|
|
authors = ["Abel Luck <abel@guardianproject.info>"]
|
|
|
|
|
include = ["LICENSE.MD"]
|
|
|
|
|
exclude = ["tests"]
|
|
|
|
|
readme = "README.md"
|
2023-11-06 09:17:38 +01:00
|
|
|
homepage = "https://gitlab.com/guardianproject-ops/py-tailscalesd"
|
|
|
|
|
repository = "https://gitlab.com/guardianproject-ops/py-tailscalesd"
|
2023-11-05 20:16:47 +01:00
|
|
|
packages = [
|
|
|
|
|
{ include = "tailscalesd"}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
tailscalesd = "tailscalesd.main:main"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.11"
|
|
|
|
|
tailscale = "^0.6.0"
|
|
|
|
|
fastapi = "^0.104.1"
|
|
|
|
|
uvicorn = "^0.24.0"
|
|
|
|
|
httpx = "^0.25.1"
|
|
|
|
|
pydantic-settings = "^2.0.3"
|
2023-11-05 20:53:43 +01:00
|
|
|
json-logging = "^1.3.0"
|
2023-11-05 20:16:47 +01:00
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
pytest = "*"
|
|
|
|
|
pytest-asyncio = "*"
|
|
|
|
|
flake8 = "*"
|
|
|
|
|
black = "*"
|
|
|
|
|
bandit = "*"
|
|
|
|
|
isort = "*"
|
|
|
|
|
mypy = "^1.2.0"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
py_version = 310
|
|
|
|
|
profile = "black"
|
|
|
|
|
src_paths = ["gm", "tests"]
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 88
|
|
|
|
|
target-version = ['py310']
|