21 lines
512 B
TOML
21 lines
512 B
TOML
# Build this file using 'python -m build' (from 'build' package)
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel", "sls_build_backend"]
|
|
build-backend = "sls_build_backend"
|
|
|
|
[project]
|
|
name = "sls_python"
|
|
version = "0.1.0"
|
|
description = "Python reimplementation skeleton of the SLS C project"
|
|
authors = [ { name = "Kyler Olsen" } ]
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[tool.setuptools]
|
|
packages = ["sls"]
|
|
|
|
[project.scripts]
|
|
sls = "sls.__main__:main"
|