-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (29 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "checkpoint_schedules"
version = "1.0.4"
authors = [
{ name="Daiane I. Dolci ", email="[email protected]" },
{ name="James R. Maddison", email="[email protected]" },
{ name="David A. Ham", email="[email protected]" },
{ name="Guillaume Pallez", email="[email protected]" },
{ name="Julien Herrmann", email="[email protected]"}
]
description = "Schedules for incremental checkpointing of adjoint simulations."
readme = "README.md"
license = {text = "LGPL-3.0"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = ["numpy"]
[project.optional-dependencies]
numba = ["numba"]
docs = ["sphinx", "nbsphinx", "nbsphinx_link", "sphinx-rtd-theme", "ipython"]
notebooks = ["jupyter", "scipy", "tabulate"]
[project.urls]
"Homepage" = "https://www.firedrakeproject.org/checkpoint_schedules/"
"repository" = "https://github.com/firedrakeproject/checkpoint_schedules"
"Bug Tracker" = "https://github.com/firedrakeproject/checkpoint_schedules/issues"