-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
73 lines (63 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["flit_core ~= 3.5"]
build-backend = "flit_core.buildapi"
[project]
name = "finite-element-networks"
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">= 3.9"
license = {file = "LICENSE"}
authors = [{name = "Marten Lienen", email = "marten.lienen@in.tum.de"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
dependencies = [
"numpy ~= 1.19",
"scipy ~= 1.7",
"scikit-fem ~= 5.2",
"einops ~= 0.4",
"torch ~= 1.10",
"torchdiffeq ~= 0.2.2",
"torch-scatter ~= 2.0",
"torchtyping",
"cachetools ~= 5.0",
"matplotlib ~= 3.5",
"Pillow ~= 9.0"
]
[project.optional-dependencies]
lightning = [
"pytorch-lightning ~= 1.5",
"torchmetrics",
"tqdm",
"scikit-learn-extra",
"more-itertools",
# Cylinder Flow
"requests",
"tfrecord_lite",
# Black Sea
"motuclient",
"xarray",
"netCDF4",
"dask",
]
wandb = ["wandb"]
test = ["pytest"]
[project.urls]
homepage = "https://github.com/martenlienen/finite-element-networks"
[tool.flit.module]
name = "finite_element_networks"
[tool.flit.sdist]
exclude = ["tests/"]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
known_first_party = ["finite_element_networks"]
known_third_party = ["wandb"]
[tool.pytest.ini_options]
testpaths = ["tests"]