-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
107 lines (96 loc) · 2.63 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "continuiti"
description = "Learning function operators with neural networks."
authors = [{ name = "appliedAI Institute gGmbH" }]
maintainers = [
{ name = "Samuel Burbulla", email = "s.burbulla@appliedai-institute.de" },
{ name = "Miguel de Benito Delgado", email = "m.debenito@appliedai-institute.de" }
]
license = { file = "LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"Artificial Intelligence", "Machine Learning", "Mathematics", "Physics",
"Operator Learning", "Physics-Informed ML", "Neural Operator", "DeepONet",
]
version = "0.2.1"
dependencies = [
"setuptools",
"numpy",
"matplotlib",
"scipy",
"pandas",
"torch>=2.1.0,<3.0.0",
"mlflow",
]
[project.optional-dependencies]
dev = [
# === Optional dependencies for tests ===
"optuna>=3.5.0,<4.0.0",
"gmsh",
"deepxde",
"scikit-learn<=1.4.2",
# === Code quality ===
"black",
"flake8",
"isort",
"pre-commit",
"pudb",
# === Testing ===
"pytest",
"pytest-cov",
"nbmake",
# === Documentation ===
"markdown-captions",
"mike",
"mkdocs==1.5.2",
"mkdocs-alias-plugin>=0.6.0",
"mkdocs-autorefs",
"mkdocs-gen-files",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-glightbox",
"mkdocs-literate-nav",
"mkdocs-macros-plugin",
"mkdocs-material",
"mkdocs-section-index",
"mkdocstrings[python]>=0.18",
"mknotebooks>=0.8.0",
"neoteroi-mkdocs",
"pygments",
# === Releasing ===
"bump-my-version",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["continuiti*"]
[tool.setuptools.package-data]
"continuiti" = ["py.typed"]
[project.urls]
Repository = "https://github.com/aai-institute/continuiti.git"
Documentation = "https://aai-institute.github.io/continuiti/"
Organization = "https://www.appliedai-institute.de/en/"
TransferLab = "https://transferlab.ai/"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--durations=0 --strict-markers --doctest-modules"
markers = [
"slow: marks tests as slow (> 5s)",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.isort]
line_length = 99
profile = "black"
filter_files = true