python/pyproject.toml

33 lines
802 B
TOML
Raw Normal View History

2024-06-19 17:10:49 +00:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rwsims"
version = "0.0.1"
authors = [
{ name="Dominik Demuth", email="dominik.demuth@pkm.tu-darmstadt.de" },
]
maintainers = [
{ name="Dominik Demuth", email="dominik.demuth@pkm.tu-darmstadt.de"}
]
description = "A small example package"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"matplotlib"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3 Clause",
"Operating System :: OS Independent",
]
[project.scripts]
2024-06-20 17:19:55 +00:00
rw_spectra = "sims.run_spectrum_sim"
rw_ste = "sims.run_ste_sim"
2024-06-19 17:10:49 +00:00
[project.urls]
Homepage = "https://github.com/pypa/sampleproject"
Issues = "https://github.com/pypa/sampleproject/issues"