44 lines
761 B
TOML
44 lines
761 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",
|
|
"psycopg2",
|
|
"sqlalchemy",
|
|
"uvicorn",
|
|
]
|
|
dynamic = ["version", "description"]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
mypy = [
|
|
"mypy",
|
|
"sqlalchemy[mypy]",
|
|
"types-requests",
|
|
]
|
|
|
|
[project.urls]
|
|
Home = "https://github.com/sbidoul/runboat"
|
|
|
|
[tool.isort]
|
|
profile = 'black'
|
|
|
|
[tool.mypy]
|
|
plugins = [
|
|
"sqlalchemy.ext.mypy.plugin",
|
|
]
|
|
|
|
# flake8 config is in .flake8
|