forked from equinor/fmu-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
117 lines (107 loc) · 2.77 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
[build-system]
requires = [
"setuptools>=45.0",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/fmu/tools/version.py"
[project]
name = "fmu-tools"
description = "Library for various tools and scripts within Fast Model Update"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Equinor", email = "[email protected]" },
]
keywords = ["energy", "subsurface", "reservoir", "scientific", "engineering"]
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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
dynamic = ["version"]
dependencies = [
"disjoint-set",
"jsonschema>=3.2.0",
"openpyxl>=2.6",
"pandas>=0.21",
"pyyaml>=5.3",
"scipy>=1.2",
"xlrd>=1.2",
"xtgeo>=2.15",
]
[project.optional-dependencies]
tests = [
"mypy",
"ruff",
"pytest",
"pytest-cov",
"pytest-runner",
"pytest-xdist",
"pytest-mock",
"pytest-snapshot",
"rstcheck",
"types-PyYAML",
]
docs = [
"autoapi",
"myst-parser",
"sphinx",
"sphinx-argparse",
"sphinx-autodoc-typehints<2.4",
"sphinx-rtd-theme",
]
[project.urls]
Homepage = "https://github.com/equinor/fmu-tools"
Repository = "https://github.com/equinor/fmu-tools"
Issues = "https://github.com/equinor/fmu-tools/issues"
Documentation = "https://equinor.github.io/fmu-tools/"
[project.scripts]
ensemble_well_props = "fmu.tools.ensembles.ensemble_well_props:main"
fmudesign = "fmu.tools.sensitivities.fmudesignrunner:main"
rename_rms_scripts = "fmu.tools.rms.rename_rms_scripts:main"
rmsvolumetrics2csv = "fmu.tools.rms.volumetrics:rmsvolumetrics2csv_main"
[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
[tool.rstcheck]
ignore_directives = ["argparse", "automodule"]
ignore_messages = "(Duplicate implicit target name)"
[tool.pytest.ini_options]
addopts = "-ra --strict-markers"
markers = [
"integration: marks a test as an integration test",
"skipunlessroxar: skip this test unless Roxar license",
]