-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.21 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
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dive-EPR"
version = "0.2.1"
authors = [
{name = "Sarah Sweger"},
{name = "Julian Cheung", email = "[email protected]"},
{name = "Lukas Zha"},
{name = "Stephan Pribitzer", email = "[email protected]"},
{name = "Stefan Stoll", email = "[email protected]"},
]
description = "Python package for Bayesian analysis of dipolar EPR spectroscopy data through Markov chain Monte Carlo sampling with PyMC."
readme = "README.md"
keywords = ["EPR", "DEER", "Bayesian", "MCMC"]
requires-python = ">=3.9"
dependencies = [
"pymc>=5.10.4",
"deerlab>=1.1.2",
"scipy>=1.11.4",
"matplotlib>=3.9.1",
"numpy>=1.15.0",
"pandas>=2.0.3",
"mkl-service>=2.4.1",
"h5netcdf>=1.3.0",
"pytest>=7.4.4",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/StollLab/dive"
Documentation = "https://stolllab.github.io/dive"