forked from FEniCS/fiat
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
42 lines (37 loc) · 1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fenics-fiat"
version = "2024.0.0"
dependencies = [
"numpy>=1.16",
"recursivenodes",
"scipy",
"symengine",
"sympy",
"fenics-ufl @ git+https://github.com/firedrakeproject/ufl.git",
]
requires-python = ">=3.10"
authors = [
{name = "Robert C. Kirby et al.", email = "[email protected]"},
{name = "Imperial College London and others", email = "[email protected]"},
]
description = "FInite element Automatic Tabulator"
readme = "README.rst"
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
[project.urls]
Repository = "https://github.com/firedrakeproject/fiat.git"
[project.optional-dependencies]
doc = [
"setuptools", # for pkg_resources
"sphinx",
]
test = ["pytest"]
[tool.setuptools]
packages = ["FIAT", "finat", "finat.ufl", "gem"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"