forked from FEniCS/ufl
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (45 loc) · 1.16 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
50
51
[build-system]
requires = ["setuptools>=62", "wheel", "pip>=22.3"]
build-backend = "setuptools.build_meta"
[project]
name = "fenics-ufl"
version = "2023.3.0.dev0"
authors = [{name="UFL contributors"}]
maintainers = [{email="[email protected]"}, {name="FEniCS Steering Council"}]
description = "Unified Form Language"
readme = "README.rst"
license = {file = "COPYING.lesser"}
requires-python = ">=3.8.0"
dependencies = ["numpy"]
[project.urls]
homepage = "https://fenicsproject.org"
repository = "https://github.com/fenics/ufl.git"
documentation = "https://docs.fenicsproject.org"
issues = "https://github.com/FEniCS/ufl/issues"
funding = "https://numfocus.org/donate"
[project.optional-dependencies]
lint = ["flake8", "pydocstyle[toml]"]
docs = ["sphinx", "sphinx_rtd_theme"]
test = ["pytest"]
ci = [
"coveralls",
"coverage",
"pytest-cov",
"pytest-xdist",
"fenics-ufl[docs]",
"fenics-ufl[lint]",
"fenics-ufl[test]",
]
[tool.setuptools]
packages = [
"ufl",
"ufl.algorithms",
"ufl.core",
"ufl.corealg",
"ufl.formatting",
"ufl.utils",
]
[tool.pydocstyle]
convention = "google"
[tool.isort]
line_length = 120