23 lines
432 B
TOML
23 lines
432 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gridverse-core"
|
|
version = "0.1.0"
|
|
description = "Minimal MVP scaffold for GridVerse cross-domain optimization"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"numpy>=1.26.0",
|
|
"pytest>=8.0.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
exclude = ["tests"]
|
|
|
|
[project.urls]
|
|
homepage = "https://example.com/gridverse"
|
|
|
|
|