23 lines
451 B
TOML
23 lines
451 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "exoroute-skeleton"
|
|
version = "0.1.0"
|
|
description = "ExoRoute Core skeleton with DSL seeds"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.9"
|
|
|
|
[project.urls]
|
|
Homepage = "https://example.com/exoroute"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "__version__" }
|