-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
137 lines (134 loc) · 7.39 KB
/
setup.py
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
132
133
134
135
136
137
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
TESTS_REQUIRE = [
"bandit",
"black>=22.1,<24",
"dash[testing]",
"isort",
"mypy<1.12",
"pylint<3.2.0",
"pytest-mock",
"pytest-xdist",
"pytest-forked",
"selenium>=3.141",
"types-setuptools",
"types-pyyaml",
]
# pylint: disable=line-too-long
setup(
name="webviz-subsurface",
description="Webviz config plugins for subsurface data",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/equinor/webviz-subsurface",
author="R&T Equinor",
packages=find_packages(exclude=["tests"]),
package_data={
"webviz_subsurface": [
"_abbreviations/abbreviation_data/*.json",
"_assets/css/*.css",
"_assets/js/*.js",
"ert_jobs/config_jobs/*",
]
},
entry_points={
"webviz_config_plugins": [
"AssistedHistoryMatchingAnalysis = webviz_subsurface.plugins._assisted_history_matching_analysis:AssistedHistoryMatchingAnalysis",
"BhpQc = webviz_subsurface.plugins._bhp_qc:BhpQc",
"CO2Leakage = webviz_subsurface.plugins._co2_leakage:CO2Leakage",
"DiskUsage = webviz_subsurface.plugins._disk_usage:DiskUsage",
"EXPERIMENTALGridViewerFMU = webviz_subsurface.plugins._grid_viewer_fmu:EXPERIMENTALGridViewerFMU",
"GroupTree = webviz_subsurface.plugins._group_tree:GroupTree",
"HistoryMatch = webviz_subsurface.plugins._history_match:HistoryMatch",
"HorizonUncertaintyViewer = webviz_subsurface.plugins._horizon_uncertainty_viewer:HorizonUncertaintyViewer",
"InplaceVolumes = webviz_subsurface.plugins._inplace_volumes:InplaceVolumes",
"InplaceVolumesOneByOne = webviz_subsurface.plugins._inplace_volumes_onebyone:InplaceVolumesOneByOne",
"LinePlotterFMU = webviz_subsurface.plugins._line_plotter_fmu.line_plotter_fmu:LinePlotterFMU",
"MapViewerFMU = webviz_subsurface.plugins._map_viewer_fmu:MapViewerFMU",
"MorrisPlot = webviz_subsurface.plugins._morris_plot:MorrisPlot",
"ParameterAnalysis = webviz_subsurface.plugins._parameter_analysis:ParameterAnalysis",
"ParameterCorrelation = webviz_subsurface.plugins._parameter_correlation:ParameterCorrelation",
"ParameterDistribution = webviz_subsurface.plugins._parameter_distribution:ParameterDistribution",
"ParameterParallelCoordinates = webviz_subsurface.plugins._parameter_parallel_coordinates:ParameterParallelCoordinates",
"ParameterResponseCorrelation = webviz_subsurface.plugins._parameter_response_correlation:ParameterResponseCorrelation",
"ProdMisfit = webviz_subsurface.plugins._prod_misfit:ProdMisfit",
"PropertyStatistics = webviz_subsurface.plugins._property_statistics:PropertyStatistics",
"PvtPlot = webviz_subsurface.plugins._pvt_plot:PvtPlot",
"RelativePermeability = webviz_subsurface.plugins._relative_permeability:RelativePermeability",
"ReservoirSimulationTimeSeries = webviz_subsurface.plugins._reservoir_simulation_timeseries:ReservoirSimulationTimeSeries",
"ReservoirSimulationTimeSeriesOneByOne = webviz_subsurface.plugins._reservoir_simulation_timeseries_onebyone:ReservoirSimulationTimeSeriesOneByOne",
"ReservoirSimulationTimeSeriesRegional = webviz_subsurface.plugins._reservoir_simulation_timeseries_regional:ReservoirSimulationTimeSeriesRegional",
"RftPlotter = webviz_subsurface.plugins._rft_plotter:RftPlotter",
"RunningTimeAnalysisFMU = webviz_subsurface.plugins._running_time_analysis_fmu:RunningTimeAnalysisFMU",
"SegyViewer = webviz_subsurface.plugins._segy_viewer:SegyViewer",
"SeismicMisfit = webviz_subsurface.plugins._seismic_misfit:SeismicMisfit",
"SimulationTimeSeries = webviz_subsurface.plugins._simulation_time_series:SimulationTimeSeries",
"SimulationTimeSeriesOneByOne = webviz_subsurface.plugins._simulation_time_series_onebyone:SimulationTimeSeriesOneByOne",
"StructuralUncertainty = webviz_subsurface.plugins._structural_uncertainty:StructuralUncertainty",
"SubsurfaceMap = webviz_subsurface.plugins._subsurface_map:SubsurfaceMap",
"SurfaceViewerFMU = webviz_subsurface.plugins._surface_viewer_fmu:SurfaceViewerFMU",
"SurfaceWithGridCrossSection = webviz_subsurface.plugins._surface_with_grid_cross_section:SurfaceWithGridCrossSection",
"SurfaceWithSeismicCrossSection = webviz_subsurface.plugins._surface_with_seismic_cross_section :SurfaceWithSeismicCrossSection",
"SwatinitQC = webviz_subsurface.plugins._swatinit_qc:SwatinitQC",
"TornadoPlotterFMU = webviz_subsurface.plugins._tornado_plotter_fmu:TornadoPlotterFMU",
"VfpAnalysis = webviz_subsurface.plugins._vfp_analysis:VfpAnalysis",
"VolumetricAnalysis = webviz_subsurface.plugins._volumetric_analysis:VolumetricAnalysis",
"WellAnalysis = webviz_subsurface.plugins._well_analysis:WellAnalysis",
"WellCompletion = webviz_subsurface.plugins._well_completion:WellCompletion",
"WellCompletions = webviz_subsurface.plugins._well_completions:WellCompletions",
"WellCrossSection = webviz_subsurface.plugins._well_cross_section:WellCrossSection",
"WellCrossSectionFMU = webviz_subsurface.plugins._well_cross_section_fmu:WellCrossSectionFMU",
"WellLogViewer = webviz_subsurface.plugins._well_log_viewer:WellLogViewer",
],
"console_scripts": ["smry2arrow_batch=webviz_subsurface.smry2arrow_batch:main"],
},
install_requires=[
"dash>=2.0.0",
"dash_bootstrap_components>=0.10.3",
"dash-daq>=0.5.0",
"defusedxml>=0.6.0",
"res2df>=1.0; sys_platform=='linux'",
"flask-caching",
"fmu-ensemble>=1.2.3",
"fmu-tools>=1.8",
"geojson>=2.5.0",
"jsonschema>=3.2.0",
"opm>=2023.10; sys_platform=='linux'",
"pandas>=1.1.5,<3",
"pillow>=6.1",
"pyarrow>=5.0.0",
"pyjwt>=2.6.0",
"pyscal>=0.7.5",
"scipy>=1.2",
"statsmodels>=0.12.1", # indirect dependency through https://plotly.com/python/linear-fits/
"xtgeo>=2.20.0",
"vtk>=9.2.2",
"webviz-config",
"webviz-core-components>=0.6",
"webviz-subsurface-components==1.0.2",
],
extras_require={"tests": TESTS_REQUIRE},
setup_requires=["setuptools_scm~=3.2"],
python_requires="~=3.8",
use_scm_version=True,
zip_safe=False,
project_urls={
"Documentation": "https://equinor.github.io/webviz-subsurface",
"Download": "https://pypi.org/project/webviz-subsurface/",
"Source": "https://github.com/equinor/webviz-subsurface",
"Tracker": "https://github.com/equinor/webviz-subsurface/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Environment :: Web Environment",
"Framework :: Dash",
"Framework :: Flask",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)