36 lines
887 B
TOML
36 lines
887 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "SSEDebug"
|
|
version = "0.1.0"
|
|
description = "A python module for general 4DSSE debugging"
|
|
readme = "readme.md"
|
|
authors = [
|
|
{name = "Emily M. Boudreaux", email = "emily.boudreaux@dartmouth.edu"},
|
|
{name = "4D-STAR Collaboration"},
|
|
]
|
|
|
|
maintainers = [
|
|
{name = "Emily M. Boudreaux", email="emily.boudreaux@dartmouth.edu"}
|
|
]
|
|
|
|
keywords = ["astrophysics", "MFEM"]
|
|
requires-python = ">=3.8"
|
|
dependencies = ["numpy >= 1.21.1", "scipy>=1.13.1"]
|
|
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Scientific/Engineering :: Astronomy",
|
|
"Operating System :: OS Independent"
|
|
]
|
|
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"] |