runboat/pyproject.toml
Stéphane Bidoul d90ffad1aa
Update README
2021-10-28 18:20:21 +02:00

37 lines
707 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",
"jinja2",
"kubernetes_asyncio",
"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