22 lines
412 B
TOML
22 lines
412 B
TOML
[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"
|
|
]
|