-
Notifications
You must be signed in to change notification settings - Fork 752
/
pyproject.toml
55 lines (51 loc) · 1.58 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
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "DeepXDE"
dynamic = ["version"]
description = "A library for scientific machine learning"
readme = "README.md"
license = {text = "LGPL-2.1"}
authors = [
{ name = "Lu Lu", email = "[email protected]" },
]
requires-python = ">=3.9"
keywords = [
"Deep learning",
"Differential equations",
"Machine learning",
"Neural networks",
"Physics-informed neural networks",
"Scientific computing",
"Scientific machine learning",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"matplotlib",
"numpy",
"scikit-learn",
"scikit-optimize>=0.9.0",
"scipy",
]
[project.urls]
Homepage = "https://github.com/lululxvi/deepxde"
"Bug Tracker" = "https://github.com/lululxvi/deepxde/issues"
Changelog = "https://github.com/lululxvi/deepxde/releases"
Documentation = "https://deepxde.readthedocs.io"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["docker", "docs*", "examples*"]
[tool.setuptools_scm]
write_to = "deepxde/_version.py"