mirror of
https://github.com/nqrduck/nqr-blochsimulator.git
synced 2024-11-16 07:11:03 +00:00
30 lines
No EOL
612 B
TOML
30 lines
No EOL
612 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project]
|
|
name = "nqr_blochsimulator"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
|
]
|
|
|
|
description = "Simple Python script to simulate NMR NQR Bloch equations"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.8"
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"matplotlib",
|
|
"numpy",
|
|
"scipy",
|
|
] |