-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (60 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
64 lines (60 loc) · 1.42 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geobrain"
version = "0.1.0"
description = "An End-to-End Differentiable Platform for Integrated Subsurface Modeling"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
authors = [
{name = "Mingliang Liu", email = "mingliangliu@sdu.edu.cn"},
]
keywords = [
"geophysics",
"bayesian-inference",
"rock-physics",
"seismic-inversion",
"differentiable-programming",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"torch>=2.0",
"numpy>=1.22",
"scipy>=1.8",
"matplotlib>=3.5",
]
[project.optional-dependencies]
io = [
"segyio",
"lasio",
"resdata",
]
docs = [
"jupyter-book>=1.0",
"sphinx-autodoc-typehints",
"sphinxcontrib-bibtex",
]
dev = [
"pytest>=7.0",
"geobrain[io]",
"geobrain[docs]",
]
all = [
"geobrain[io]",
"geobrain[docs]",
"geobrain[dev]",
]
[project.urls]
Homepage = "https://github.com/GeoBrain-Project/GeoBrain"
Documentation = "https://geobrain-project.github.io/geobrain"
Repository = "https://github.com/GeoBrain-Project/GeoBrain"
[tool.setuptools.packages.find]
include = ["geobrain*"]