Because kubernetes_asyncio watcher have correctness issues, as they seem to re-emit events that pre-date the initial load. Although I ended up having to implement an infinite watcher, to handle socket timeout errors...
38 lines
715 B
TOML
38 lines
715 B
TOML
[build-system]
|
|
requires = ["flit_core >=3.4,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "runboat"
|
|
authors = [{name = "St\u00e9phane Bidoul", email = "stephane.bidoul@gmail.com"}]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
dependencies = [
|
|
"fastapi",
|
|
"gunicorn",
|
|
"jinja2",
|
|
"kubernetes",
|
|
"requests", # TODO for github, to replace by aiohttp or httpx
|
|
"rich",
|
|
"uvicorn",
|
|
]
|
|
dynamic = ["version", "description"]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
mypy = [
|
|
"mypy",
|
|
]
|
|
|
|
[project.urls]
|
|
Home = "https://github.com/sbidoul/runboat"
|
|
|
|
[tool.isort]
|
|
profile = 'black'
|
|
|
|
# flake8 config is in .flake8
|