14 lines
252 B
TOML
14 lines
252 B
TOML
[build-system]
|
|
requires = ["setuptools>=75", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "hello-world"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
[project.scripts]
|
|
hello-world = "hello_world.__main__:main"
|