runboat/pyproject.toml
2021-11-14 14:42:02 +01:00

64 lines
1.1 KiB
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 = [
"ansi2html",
"fastapi",
"gunicorn",
"httpx",
"jinja2",
"kubernetes",
"rich",
"uvicorn",
]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-dotenv",
]
mypy = [
"mypy",
]
[project.urls]
Home = "https://github.com/sbidoul/runboat"
[tool.isort]
profile = 'black'
[tool.pytest.ini_options]
env_override_existing_values = 1
env_files = [".env.test"]
# flake8 config is in .flake8
[tool.mypy]
strict = true
show_error_codes = true
[[tool.mypy.overrides]]
module = "uvicorn.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "urllib3.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "kubernetes.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "ansi2html"
ignore_missing_imports = true