-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (42 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
52 lines (42 loc) · 981 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
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "FEM"
version = "0.1.0"
description = "Package for Finite Element Course"
readme = "README.md"
requires-python = "==3.12.*"
license = { text = "MIT" }
authors = [
{ name = "Philip Korsager Nickel, Aske Schroder Nielsen", email = "s214960@dtu.dk" }
]
# All dependencies (runtime, docs, and dev)
dependencies = [
# Runtime dependencies
"numpy>=2.2.0,<2.4",
"scipy>=1.14.0",
"numba>=0.61.0",
"matplotlib>=3.9.0",
"seaborn>=0.13.0",
"pandas>=2.2.0",
"sympy>=1.14.0",
"snakeviz>=2.2.2",
"line-profiler>=5.0.0",
"ipykernel>=7.1.0",
"pyarrow>=22.0.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.12"
[tool.ruff]
exclude = ["SusDriverW2.py", "driver28b.py", "driver28c.py"]