forked from equinor/flownet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
84 lines (80 loc) · 2.48 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
LONG_DESCRIPTION = fh.read()
REQUIREMENTS = [
"configsuite>=0.6",
"cwrap>=1.6",
"ecl>=2.9",
"ecl2df>=0.8.1",
"ert>=2.17",
"fmu-ensemble>=1.2",
"hyperopt>=0.2.5",
"jinja2>=2.10",
"matplotlib>=3.1",
"mlflow>=1.11.0",
"numpy>=1.17",
"opm>=2020.10",
"pandas~=1.0",
"psutil>=5.7",
"pyarrow>=0.14",
"pykrige>=1.5",
"pyvista>=0.23",
"pyyaml>=5.2",
"scikit-learn>=0.22",
"scipy>=1.6",
"webviz-config>=0.0.42",
"webviz-config-equinor>=0.0.9",
"webviz-subsurface>=0.0.24",
"xlrd<2",
]
TEST_REQUIRES = [
"black",
"mypy>=0.761",
"pylint>=2.3",
"pyscal>=0.7.4",
"pytest>=5.3",
"pytest-cov>=2.8",
"sphinx",
"sphinx-rtd-theme",
"types-pkg_resources",
"types-PyYAML",
]
setup(
name="flownet",
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIRES,
setup_requires=["setuptools_scm~=3.2"],
python_requires="~=3.7",
extras_require={"tests": TEST_REQUIRES},
description="Simplified training of reservoir simulation models",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/equinor/flownet",
author="R&T Equinor",
use_scm_version=True,
package_dir={"": "src"},
packages=find_packages("src"),
package_data={
"flownet": ["templates/*", "static/*", "ert/forward_models/FLOW_SIMULATION"]
},
entry_points={
"ert": ["flow = flownet.ert.forward_models._flow_job"],
"console_scripts": [
"flownet=flownet._command_line:main",
"flownet_render_realization=flownet.ert.forward_models:render_realization",
"flownet_delete_simulation_output=flownet.ert.forward_models:delete_simulation_output",
"flownet_run_flow=flownet.ert.forward_models:run_flow",
"flownet_save_iteration_parameters=flownet.ert.forward_models:save_iteration_parameters",
"flownet_save_iteration_analytics=flownet.ert.forward_models:save_iteration_analytics",
"flownet_plot_results=flownet.utils.plot_results:main",
],
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)