-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
40 lines (33 loc) · 1009 Bytes
/
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "symfem"
version = "2025.3.0"
description = "a symbolic finite element definition library"
readme = "README.md"
requires-python = ">=3.8.0"
license = { file = "LICENSE" }
authors = [
{ name = "Matthew Scroggs", email = "symfem@mscroggs.co.uk" }
]
packages = ["symfem", "symfem.elements", "symfem.polynomials"]
dependencies = ["sympy>=1.10", "appdirs"]
[project.urls]
homepage = "https://github.com/mscroggs/symfem"
repository = "https://github.com/mscroggs/symfem"
documentation = "https://symfem.readthedocs.io/en/latest/"
[project.optional-dependencies]
style = ["ruff", "mypy"]
docs = ["sphinx", "sphinx-autoapi"]
optional = ["CairoSVG>=2.6.0"]
test = ["pytest", "symfem[optional]", "numpy"]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
ignore_missing_imports = true