container-spawner/pyproject.toml

22 lines
412 B
TOML
Raw Normal View History

2022-08-25 00:56:49 +01:00
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "containerspawner"
description = "A tool for spawning containers."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT License"}
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
lint = [
"pylint>=2.14.5",
"flake8>=5.0.4"
]
test = [
"pytest>=7.1.2"
]