-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.17 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mbirjax"
version = "0.5.4"
description = "High-performance tomographic reconstruction"
keywords = ["tomography", "tomographic reconstruction", "computed tomography"]
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "MBIRJAX development team", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"matplotlib",
"numpy",
"setuptools",
"jax",
"jaxlib",
"ruamel.yaml",
"psutil",
"striprtf",
"h5py"
]
[project.optional-dependencies]
# "pip install mbirjax[cuda12]"
cuda12 = ["jax[cuda12]"]
test = ["pytest"]
docs = [
"sphinx",
"sphinxcontrib-bibtex",
"sphinx-book-theme>=1.0.1",
"sphinx-design",
"sphinx-copybutton"
]
[tool.setuptools.packages]
find = {}
[project.urls]
homepage = "https://mbirjax.readthedocs.io"
source = "https://github.com/cabouman/mbirjax"