33 lines
802 B
TOML
33 lines
802 B
TOML
[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]
|
|
rw_spectra = "sims.run_spectrum_sim"
|
|
rw_ste = "sims.run_ste_sim"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/pypa/sampleproject"
|
|
Issues = "https://github.com/pypa/sampleproject/issues" |