2023-08-22 14:06:38 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nqr_blochsimulator"
|
2023-12-14 11:46:10 +00:00
|
|
|
version = "0.0.1a"
|
2023-08-22 14:06:38 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
|
|
|
]
|
|
|
|
|
2023-12-14 11:46:10 +00:00
|
|
|
description = "Simple Python script to simulate NQR Bloch equations"
|
2023-08-22 14:06:38 +00:00
|
|
|
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",
|
2023-08-23 18:08:44 +00:00
|
|
|
"numpy",
|
2023-08-22 14:06:38 +00:00
|
|
|
]
|