-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.18 KB
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
[project]
name = "gigablochs"
version = "0.2.4"
authors = [
{ name="Adam Suban-Loewen"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
description = "A flexible Bloch simulation framework enabling large parameter space investigations, such as for Arterial Spin Labelling (ASL)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"sympy",
"bokeh",
"tqdm",
]
[project.optional-dependencies]
dev = ["setuptools", "build", "bump-my-version"]
test = ["pytest"]
docs = ["sphinx", "sphinx-book-theme", "numpydoc", "sphinxcontrib-bibtex", "sphinxcontrib-video", "sphinx_copybutton", "sphinx_design", "sphinx-pyscript"]
gpu = ["cupy-cuda12x!=13.0.0"]
animation = ["manim"]
[tool.setuptools.packages.find]
include = ["gigablochs*"]
[project.urls]
Homepage = "https://nathanielatom.github.io/gigablochs"
Issues = "https://github.com/nathanielatom/gigablochs/issues"
[tool.bumpversion]
tag = true
sign_tags = true
commit = true
[[tool.bumpversion.files]]
filename = "gigablochs/__init__.py"
[[tool.bumpversion.files]]
filename = "docs/conf.py"