forked from equinor/webviz-subsurface
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (69 loc) · 3.16 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
TESTS_REQUIRE = ["selenium~=3.141", "pylint", "mock", "black", "bandit", "pytest-xdist"]
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/*.json"]},
entry_points={
"webviz_config_plugins": [
"ParameterDistribution = webviz_subsurface.plugins:ParameterDistribution",
"ParameterCorrelation = webviz_subsurface.plugins:ParameterCorrelation",
"ParameterResponseCorrelation = "
+ "webviz_subsurface.plugins:ParameterResponseCorrelation",
"DiskUsage = webviz_subsurface.plugins:DiskUsage",
"SubsurfaceMap = webviz_subsurface.plugins:SubsurfaceMap",
"HistoryMatch = webviz_subsurface.plugins:HistoryMatch",
"Intersect = webviz_subsurface.plugins:Intersect",
"MorrisPlot = webviz_subsurface.plugins:MorrisPlot",
"InplaceVolumes = webviz_subsurface.plugins:InplaceVolumes",
"InplaceVolumesOneByOne = webviz_subsurface.plugins:InplaceVolumesOneByOne",
"ReservoirSimulationTimeSeries = "
+ "webviz_subsurface.plugins:ReservoirSimulationTimeSeries",
"ReservoirSimulationTimeSeriesOneByOne = "
+ "webviz_subsurface.plugins:ReservoirSimulationTimeSeriesOneByOne",
"SurfaceViewerFMU = webviz_subsurface.plugins:SurfaceViewerFMU",
"SegyViewer = webviz_subsurface.plugins:SegyViewer",
"SurfaceWithGridCrossSection = "
+ "webviz_subsurface.plugins:SurfaceWithGridCrossSection",
"SurfaceWithSeismicCrossSection = "
+ "webviz_subsurface.plugins:SurfaceWithSeismicCrossSection",
"WellCrossSection = webviz_subsurface.plugins:WellCrossSection",
"WellCrossSectionFMU = webviz_subsurface.plugins:WellCrossSectionFMU",
"ParameterParallelCoordinates = "
+ "webviz_subsurface.plugins:ParameterParallelCoordinates",
]
},
install_requires=[
"scipy~=1.2",
"matplotlib~=3.0",
"pandas~=0.24",
"pillow~=6.1",
"xtgeo~=2.1",
"webviz-config>=0.0.48",
"webviz-subsurface-components>=0.0.23",
],
tests_require=TESTS_REQUIRE,
extras_require={"tests": TESTS_REQUIRE},
setup_requires=["setuptools_scm~=3.2"],
use_scm_version=True,
zip_safe=False,
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)",
],
)