-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
131 lines (118 loc) · 2.83 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = [
"setuptools>=45.0",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/grid3d_maps/version.py"
[project]
name = "grid3d_maps"
description = "Make HC thickness, avg maps, etc directly from 3D props"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Equinor", email = "fg_fmu-atlas@equinor.com" },
]
keywords = [
"energy",
"subsurface",
"reservoir",
"scientific",
"engineering",
"maps",
"xtgeo",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dynamic = ["version"]
dependencies = [
"fmu-config",
"fmu-dataio>=1.3.0",
"numpy<2",
"pyyaml",
"xtgeo>=2.20.7",
"xtgeoviz",
]
[project.optional-dependencies]
tests = [
"coverage>=4.1",
"ruff",
"mypy",
"pylint",
"pytest",
"pytest-cov",
"pytest-runner",
"pytest-xdist",
"rstcheck",
"types-PyYAML",
]
docs = [
"myst-parser",
"sphinx",
"sphinx-argparse",
"sphinx-autodoc-typehints<2.4",
"sphinx-copybutton",
"sphinx-togglebutton",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://github.com/equinor/grid3d-maps"
Repository = "https://github.com/equinor/grid3d-maps"
Documentation = "https://equinor.github.io/grid3d-maps"
[project.scripts]
grid3d_hc_thickness = "grid3d_maps.avghc.grid3d_hc_thickness:main"
grid3d_average_map = "grid3d_maps.avghc.grid3d_average_map:main"
[project.entry-points.ert]
grid3d_maps_jobs = "grid3d_maps.hook_implementations.jobs"
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose"
log_cli = "False"
log_cli_format = "%(levelname)8s (%(relativeCreated)6.0fms) %(filename)44s [%(funcName)40s()] %(lineno)4d >> %(message)s"
log_cli_level = "INFO"
testpaths = "tests"
markers = [
"integration: Integration tests",
"requires_ert: A test requiring ert in the environment",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = [
"C901",
]
select = [
"C",
"E",
"F",
"I",
"PIE",
"Q",
"RET",
"RSE",
"SIM",
"TCH",
"TID",
"W",
]
[tool.ruff.lint.isort]
combine-as-imports = true