forked from FEniCS/fiat
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 937 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "firedrake-fiat"
# TODO RELEASE
version = "2026.5.0.dev0"
dependencies = [
# TODO RELEASE
"fenics-ufl @ git+https://github.com/FEniCS/ufl.git@main",
"numpy>=1.16",
"recursivenodes",
"scipy",
"symengine",
"sympy",
]
requires-python = ">=3.10"
authors = [
{name = "Robert C. Kirby et al.", email = "fenics-dev@googlegroups.com"},
{name = "Imperial College London and others", email = "david.ham@imperial.ac.uk"},
]
description = "FInite element Automatic Tabulator"
readme = "README.rst"
classifiers = [
"Programming Language :: Python",
]
[project.urls]
Repository = "https://github.com/firedrakeproject/fiat.git"
[project.optional-dependencies]
doc = [
"sphinx",
]
test = ["pytest"]
[tool.setuptools]
packages = ["FIAT", "finat", "finat.ufl", "gem"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"