-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (31 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eDPM"
version = "0.1.1"
authors = [
{ name="Jonas Pleyer", email="jonas.pleyer@fdm.uni-freiburg.de" },
{ name="Polina Gaindrik", email="p.gaindrik@tsenso.com" },
]
dependencies = [
"matplotlib",
"numpy",
"pymongo",
"scipy",
"pydantic",
"pytest",
]
description = "Optimal experimental design utilizing the Fischer information matrix"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Home-page" = "https://github.com/Spatial-Systems-Biology-Freiburg/Model-Design-Fischer-Information-Matrix"
"Bug Tracker" = "https://github.com/Spatial-Systems-Biology-Freiburg/Model-Design-Fischer-Information-Matrix/issues"
Documentation = "https://spatial-systems-biology-freiburg.github.io/eDPM/"
"Source code" = "https://github.com/Spatial-Systems-Biology-Freiburg/eDPM"