-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyadjoint-ad"
version = "2023.0.0"
dependencies = [
"checkpoint_schedules",
"scipy>=1.0",
]
authors = [
{name = "Jørgen S. Dokken", email = "[email protected]"},
]
description = "High-level automatic differentiation library"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
]
[project.urls]
Repository = "https://github.com/dolfin-adjoint/pyadjoint.git"
[project.optional-dependencies]
all = [
"coverage",
"flake8",
"meshio",
"moola>=0.1.6",
"networkx",
"protobuf",
"pygmsh",
"pygraphviz",
"pytest>=3.10",
"sphinx",
"sphinx-autobuild",
"sphinxcontrib-bibtex",
"tensorflow",
]
doc = ["sphinx", "sphinx-autobuild", "sphinxcontrib-bibtex"]
meshing = ["pygmsh", "meshio"]
moola = ["moola>=0.1.6"]
test = ["pytest>=3.10", "flake8", "coverage"]
visualisation = ["tensorflow", "protobuf", "networkx", "pygraphviz"]
[tool.setuptools]
packages = ["firedrake_adjoint", "numpy_adjoint", "pyadjoint", "pyadjoint.optimization"]