forked from equinor/ert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
203 lines (177 loc) · 5.81 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import os
import subprocess
import sys
from pathlib import Path
from setuptools import Command, find_packages
from setuptools.command.egg_info import egg_info
from skbuild import setup
# list of pair of .proto file and out directory
PROTOBUF_FILES = [("src/_ert_com_protocol/_schema.proto", "src/_ert_com_protocol")]
def compile_protocol_buffers():
for proto, out_dir in PROTOBUF_FILES:
proto_path = Path(proto).parent
subprocess.run(
[
sys.executable,
"-m",
"grpc_tools.protoc",
"-I",
proto_path,
f"--python_out={out_dir}",
proto,
],
check=True,
)
class EggInfo(egg_info):
"""scikit-build uses the metadata of ert to determine what to include when building
the project. This determination results in files being copied to a special build
folder. If ert wants to compile e.g. protobuf files and have those included in the
distribution, those files needs to be a part of the distribution metadata, i.e. it
needs to happen in egg_info so that the compiled files are copied to the build
folder."""
def run(self):
compile_protocol_buffers()
egg_info.run(self) # old style class, no super()
class CompileProtocolBuffers(Command):
user_options = []
def initialize_options(self) -> None:
pass
def finalize_options(self) -> None:
pass
def run(self):
compile_protocol_buffers()
# Corporate networks tend to be behind a proxy server with their own non-public
# SSL certificates. Conan keeps its own certificates,
# whose path we can override
if "CONAN_CACERT_PATH" not in os.environ:
# Look for a RHEL-compatible system-wide file
for file_ in ("/etc/pki/tls/cert.pem",):
if not os.path.isfile(file_):
continue
os.environ["CONAN_CACERT_PATH"] = file_
break
def get_ecl_include():
from ecl import get_include
return get_include()
def package_files(directory):
paths = []
for (path, _, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join("..", "..", path, filename))
return paths
with open("README.md") as f:
long_description = f.read()
args = dict(
name="ert",
author="Equinor ASA",
author_email="fg_sib-scout@equinor.com",
description="Ensemble based Reservoir Tool (ERT)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/equinor/ert",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"ert": package_files("src/ert/gui/resources/")
+ package_files("src/ert/shared/share/")
+ ["logging/logger.conf", "logging/storage_log.conf"]
+ [
"_c_wrappers/fm/rms/rms_config.yml",
"_c_wrappers/fm/ecl/ecl300_config.yml",
"_c_wrappers/fm/ecl/ecl100_config.yml",
],
},
include_package_data=True,
license="GPL-3.0",
platforms="any",
python_requires=">=3.8",
install_requires=[
"aiofiles",
"aiohttp",
"alembic",
"ansicolors==1.1.8",
"async-generator",
"beartype >= 0.9.1, < 0.11",
"cloudevents>=1.6.0",
"cloudpickle",
"tqdm>=4.62.0",
"cryptography",
"cwrap",
"dask_jobqueue",
"decorator",
"deprecation",
"dnspython >= 2",
"ecl >= 2.14.1",
"ert-storage >= 0.3.16",
"fastapi",
"filelock",
"graphlib_backport; python_version < '3.9'",
"iterative_ensemble_smoother>=0.0.3",
"jinja2",
"matplotlib",
"numpy",
"packaging",
"pandas",
"pluggy",
"prefect<2",
"protobuf<4",
"psutil",
"pydantic >= 1.9",
"PyQt5",
"pyrsistent",
"python-dateutil",
"pyyaml",
"qtpy",
"requests",
"SALib",
"scipy",
"sqlalchemy",
"uvicorn >= 0.17.0",
"websockets >= 9.0.1",
"httpx",
"tables",
],
entry_points={
"console_scripts": [
"ert=ert.__main__:main",
"job_dispatch.py = _ert_job_runner.job_dispatch:main",
]
},
scripts=["src/clib/lib/job_queue/qstat_proxy.sh"],
cmake_args=[
"-DECL_INCLUDE_DIRS=" + get_ecl_include(),
# we can safely pass OSX_DEPLOYMENT_TARGET as it's ignored on
# everything not OS X. We depend on C++17, which makes our minimum
# supported OS X release 10.15
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15",
f"-DPYTHON_EXECUTABLE={sys.executable}",
],
cmake_source_dir="src/clib/",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
cmdclass={
"egg_info": EggInfo,
"compile_protocol_buffers": CompileProtocolBuffers,
},
)
setup(**args)
# workaround for https://github.com/scikit-build/scikit-build/issues/546 :
# This increases time taken to run `pip install -e .` somewhat until we
# have only one top level package at which point we can use the workaround
# in the issue
if sys.argv[1] == "develop":
from setuptools import setup as setuptools_setup
del args["cmake_args"]
del args["cmake_source_dir"]
setuptools_setup(**args)