completor 0.1.2__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {completor-0.1.2 → completor-1.0.0}/PKG-INFO +10 -11
- {completor-0.1.2 → completor-1.0.0}/README.md +2 -2
- {completor-0.1.2 → completor-1.0.0}/completor/completion.py +152 -542
- completor-1.0.0/completor/constants.py +329 -0
- completor-1.0.0/completor/create_output.py +590 -0
- {completor-0.1.2 → completor-1.0.0}/completor/exceptions/exceptions.py +6 -6
- completor-1.0.0/completor/get_version.py +8 -0
- {completor-0.1.2 → completor-1.0.0}/completor/hook_implementations/jobs.py +2 -3
- {completor-0.1.2 → completor-1.0.0}/completor/input_validation.py +53 -41
- {completor-0.1.2 → completor-1.0.0}/completor/launch_args_parser.py +7 -12
- {completor-0.1.2 → completor-1.0.0}/completor/logger.py +3 -3
- completor-1.0.0/completor/main.py +228 -0
- {completor-0.1.2 → completor-1.0.0}/completor/parse.py +104 -93
- {completor-0.1.2 → completor-1.0.0}/completor/prepare_outputs.py +593 -457
- {completor-0.1.2 → completor-1.0.0}/completor/read_casefile.py +248 -197
- completor-1.0.0/completor/read_schedule.py +463 -0
- completor-1.0.0/completor/utils.py +416 -0
- {completor-0.1.2 → completor-1.0.0}/completor/visualization.py +1 -14
- {completor-0.1.2 → completor-1.0.0}/completor/visualize_well.py +29 -27
- completor-1.0.0/completor/wells.py +273 -0
- {completor-0.1.2 → completor-1.0.0}/pyproject.toml +9 -10
- completor-0.1.2/completor/constants.py +0 -256
- completor-0.1.2/completor/create_output.py +0 -462
- completor-0.1.2/completor/create_wells.py +0 -314
- completor-0.1.2/completor/main.py +0 -486
- completor-0.1.2/completor/pvt_model.py +0 -14
- completor-0.1.2/completor/read_schedule.py +0 -160
- completor-0.1.2/completor/utils.py +0 -185
- {completor-0.1.2 → completor-1.0.0}/LICENSE +0 -0
- {completor-0.1.2 → completor-1.0.0}/completor/__init__.py +0 -0
- {completor-0.1.2 → completor-1.0.0}/completor/config_jobs/run_completor +0 -0
- {completor-0.1.2 → completor-1.0.0}/completor/exceptions/__init__.py +0 -0
- {completor-0.1.2 → completor-1.0.0}/completor/exceptions/clean_exceptions.py +0 -0
|
@@ -1,29 +1,28 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: completor
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Advanced mulit-segmented well completion tool.
|
|
5
5
|
Home-page: https://github.com/equinor/completor
|
|
6
6
|
License: LGPL-3.0-only
|
|
7
7
|
Author: Equinor ASA
|
|
8
8
|
Author-email: opensource@equinor.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.11,<3.12
|
|
10
10
|
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
|
11
11
|
Classifier: Natural Language :: English
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
18
15
|
Provides-Extra: ert
|
|
19
16
|
Requires-Dist: docutils (==0.20.1) ; extra == "ert"
|
|
20
17
|
Requires-Dist: ert (>=10.1.2,<11.0.0) ; extra == "ert"
|
|
21
|
-
Requires-Dist: matplotlib (>=3.
|
|
22
|
-
Requires-Dist: numpy (>=1.
|
|
23
|
-
Requires-Dist: pandas (>=2.
|
|
18
|
+
Requires-Dist: matplotlib (>=3.9.2,<4.0.0)
|
|
19
|
+
Requires-Dist: numpy (>=1.26.4,<2.0.0)
|
|
20
|
+
Requires-Dist: pandas (>=2.2.2,<3.0.0)
|
|
24
21
|
Requires-Dist: pyqt5-qt5 (==5.15.2) ; extra == "ert"
|
|
22
|
+
Requires-Dist: pytest-env (>=1.1.4,<2.0.0)
|
|
25
23
|
Requires-Dist: rstcheck-core (>=1.2.1,<2.0.0) ; extra == "ert"
|
|
26
|
-
Requires-Dist: scipy (>=1.
|
|
24
|
+
Requires-Dist: scipy (>=1.14.1,<2.0.0)
|
|
25
|
+
Requires-Dist: tqdm (>=4.66.5,<5.0.0)
|
|
27
26
|
Project-URL: Bug Tracker, https://github.com/equinor/completor/issues
|
|
28
27
|
Project-URL: Documentation, https://equinor.github.io/completor
|
|
29
28
|
Project-URL: Repository, https://github.com/equinor/completor
|
|
@@ -43,7 +42,7 @@ Detailed documentation for usage of completor can be found at https://equinor.gi
|
|
|
43
42
|
## Getting started as a user
|
|
44
43
|
|
|
45
44
|
### Prerequisites
|
|
46
|
-
* [Python](https://www.python.org/), version 3.
|
|
45
|
+
* [Python](https://www.python.org/), version 3.11
|
|
47
46
|
* [ERT](https://github.com/equinor/ert) (optional, and only available on Linux.)
|
|
48
47
|
|
|
49
48
|
### Installation
|
|
@@ -84,7 +83,7 @@ and making a pull request.
|
|
|
84
83
|
See [Contribution Document](documentation/docs/contribution_guide.mdx) on how to contribute.
|
|
85
84
|
|
|
86
85
|
### Install completor as dev
|
|
87
|
-
In order to run Completor® you need to have versions of [Python 3.
|
|
86
|
+
In order to run Completor® you need to have versions of [Python 3.11](https://www.python.org/downloads/) installed.
|
|
88
87
|
#### Source code
|
|
89
88
|
Clone the [Completor® repository](https://github.com/equinor/completor) to get the source code.
|
|
90
89
|
```bash
|
|
@@ -12,7 +12,7 @@ Detailed documentation for usage of completor can be found at https://equinor.gi
|
|
|
12
12
|
## Getting started as a user
|
|
13
13
|
|
|
14
14
|
### Prerequisites
|
|
15
|
-
* [Python](https://www.python.org/), version 3.
|
|
15
|
+
* [Python](https://www.python.org/), version 3.11
|
|
16
16
|
* [ERT](https://github.com/equinor/ert) (optional, and only available on Linux.)
|
|
17
17
|
|
|
18
18
|
### Installation
|
|
@@ -53,7 +53,7 @@ and making a pull request.
|
|
|
53
53
|
See [Contribution Document](documentation/docs/contribution_guide.mdx) on how to contribute.
|
|
54
54
|
|
|
55
55
|
### Install completor as dev
|
|
56
|
-
In order to run Completor® you need to have versions of [Python 3.
|
|
56
|
+
In order to run Completor® you need to have versions of [Python 3.11](https://www.python.org/downloads/) installed.
|
|
57
57
|
#### Source code
|
|
58
58
|
Clone the [Completor® repository](https://github.com/equinor/completor) to get the source code.
|
|
59
59
|
```bash
|