54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "wheel", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nmreval"
|
|
version = "0.1"
|
|
description = "Evaluation of NMR and orther data"
|
|
authors = [
|
|
{ name = "Dominik Demuth", email = "dominik.demuth@pkm.tu-darmstadt.de" },
|
|
]
|
|
maintainers = [
|
|
{ name = "Dominik Demuth", email = "dominik.demuth@pkm.tu-darmstadt.de" },
|
|
]
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"Topic :: Scientific/Engineering :: Physics",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3 :: only",
|
|
"Operating System :: POSIX :: Linux"
|
|
]
|
|
keywords = ["nmr", "physics", "science"]
|
|
license = { text = "BSD 3-Clause License" }
|
|
dependencies = [
|
|
"numpy",
|
|
"scipy",
|
|
"h5py",
|
|
"PyQt5",
|
|
"pyqtgraph",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
legacy = ["bsddb3"]
|
|
|
|
[project.urls]
|
|
Repository = "https://gitea.pkm.physik.tu-darmstadt.de/IPKM/nmreval"
|
|
Issues = "https://gitea.pkm.physik.tu-darmstadt.de/IPKM/nmreval/issues"
|
|
|
|
[project.gui-scripts]
|
|
nmreval = "gui_qt.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|