-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.89 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pyopmnearwell"
description = "A Python framework to simulate near well dynamics using OPM Flow"
authors= [{ name = "David Landa-Marbán", email = "dmar@norceresearch.no" },
{name = "Peter Moritz von Schultzendorff", email = "peter.schultzendorff@uib.no"},
{name = "Antoine Lechevallier", email = "anle@norceresearch.no"}]
maintainers = [{ name = "David Landa-Marbán", email = "dmar@norceresearch.no" },
{name = "Peter Moritz von Schultzendorff", email = "peter.schultzendorff@uib.no"},
{name = "Antoine Lechevallier", email = "anle@norceresearch.no"}]
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "GPL-3.0"}
keywords = ["co2", "dynamics", "hydrogen", "opm", "wells", "salt-precipitation", "corner-point-grid"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent"
]
dependencies = [
"alive_progress",
"keras_tuner",
"mako",
"matplotlib",
"pandas",
"resdata",
"scikit-learn",
"scipy"
]
requires-python = ">=3.12"
[tool.setuptools.dynamic]
version = {attr = "pyopmnearwell.__version__"}
[project.scripts]
pyopmnearwell = "pyopmnearwell.core.pyopmnearwell:main"
[project.urls]
Homepage = "https://cssr-tools.github.io/pyopmnearwell"
Repository = "https://github.com/cssr-tools/pyopmnearwell"
[tool.setuptools]
packages.find.where = ["src"]
platforms = ["all"]
[project.optional-dependencies]
tensorflow = ["tensorflow"]