YREA-SLS/SLS_Python/pyproject.toml

19 lines
403 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sls-python"
version = "0.1.0"
description = "Python reimplementation skeleton of the SLS C project"
authors = [ { name = "Your Name" } ]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"click>=8.0"
]
[project.scripts]
sls = "sls.cli:main"