
All checks were successful
Gitea Actions Demo / build_test (3.11.12) (push) Successful in 10s
56 lines
1.7 KiB
TOML
56 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools >= 77.0.3"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["AMBER"]
|
|
package-dir = {"" = "src"}
|
|
|
|
[project]
|
|
name = "AMBER"
|
|
version = "0.0.2"
|
|
dependencies = [
|
|
"numpy>=2",
|
|
"scipy>=1.7",
|
|
"torch>=2",
|
|
"matplotlib>=3.4",
|
|
]
|
|
requires-python = ">=3.6"
|
|
authors = [
|
|
{name = "Jakob Lass", email = "jakob.lass@psi.ch"},
|
|
{name = "Victor Cohen", email = "victor.cohen@sdsc.ethz.ch"},
|
|
{name = "Bejar Haro Benjamin", email = "benjamin.bejar@psi.ch"},
|
|
{name = "Daniel G. Mazzone", email = "daniel.mazzone@psi.ch"},
|
|
]
|
|
maintainers = [
|
|
{name = "Jakob Lass", email = "jakob.lass@psi.ch"},
|
|
]
|
|
description = "AMBER: Algorithm for Multiplexing spectrometer Background Estimation with Rotation-independence"
|
|
readme = "README.md"
|
|
license-files = ["LICENSE"]
|
|
keywords = ["Machine Learning", "Signal Segmentation", "Background Determination"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Science/Research",
|
|
"Intended Audience :: Education",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Operating System :: OS Independent",
|
|
""
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.psi.ch/lass_j/AMBER/"
|
|
Documentation = "https://gitea.psi.ch/lass_j/AMBER/"
|
|
Repository = "https://gitea.psi.ch/lass_j/AMBER/.git"
|
|
"Bug Tracker" = "https://gitea.psi.ch/lass_j/AMBER/issues"
|
|
Changelog = "https://gitea.psi.ch/lass_j/AMBER/master/CHANGELOG.md"
|
|
|