forked from equinor/semeio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·70 lines (68 loc) · 2.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
from pathlib import Path
from setuptools import find_packages, setup
# pylint: disable=line-too-long
setup(
name="semeio",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
use_scm_version={"write_to": "semeio/version.py"},
author="Equinor ASA",
author_email="fg_sib-scout@equinor.com",
url="https://github.com/equinor/semeio",
description="Jobs and workflow jobs for Ert.",
packages=find_packages(include=["semeio*"]),
entry_points={
"ert": [
"semeio_jobs = semeio.hook_implementations.jobs",
"SpearmanCorrelation = semeio.workflows.spearman_correlation_job.spearman_correlation", # noqa
"MisfitPreprocessor = semeio.workflows.misfit_preprocessor.misfit_preprocessor", # noqa
"CorrelatedObsScaling = semeio.workflows.correlated_observations_scaling.cos", # noqa
"CsvExport2Job = semeio.workflows.csv_export2.csv_export2",
"AhmAnalysisJob = semeio.workflows.ahm_analysis.ahmanalysis",
"LocalisationConfigJob = semeio.workflows.localisation.local_config_script", # noqa
],
"console_scripts": [
"csv_export2=semeio.workflows.csv_export2.csv_export2:cli",
"overburden_timeshift=semeio.jobs.scripts.overburden_timeshift:main_entry_point", # noqa
"design2params=semeio.jobs.scripts.design2params:main_entry_point",
"gendata_rft=semeio.jobs.scripts.gendata_rft:main_entry_point",
"design_kw=semeio.jobs.scripts.design_kw:main_entry_point",
"fm_pyscal=semeio.jobs.scripts.fm_pyscal:main_entry_point",
"semeio_stea=semeio.jobs.scripts.fm_stea:main_entry_point",
"replace_string=semeio.jobs.scripts.replace_string:main_entry_point",
],
},
license="GPL-3.0",
platforms="any",
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (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 :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"ecl",
"ert >= 5.0.0b7",
"configsuite>=0.6",
"numpy",
"pandas>1.3.0",
"pydantic",
"scikit-learn",
"scipy",
"xlrd",
"stea",
"pyscal>=0.4.0",
"fmu-ensemble",
"segyio",
"xtgeo>=2.15",
],
include_package_data=True,
)