completor 0.1.3__tar.gz → 1.0.1__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.
Files changed (35) hide show
  1. {completor-0.1.3 → completor-1.0.1}/PKG-INFO +11 -12
  2. {completor-0.1.3 → completor-1.0.1}/README.md +2 -2
  3. completor-1.0.1/completor/completion.py +646 -0
  4. completor-1.0.1/completor/constants.py +329 -0
  5. completor-1.0.1/completor/create_output.py +590 -0
  6. completor-1.0.1/completor/exceptions/__init__.py +0 -0
  7. {completor-0.1.3 → completor-1.0.1}/completor/exceptions/exceptions.py +6 -6
  8. completor-1.0.1/completor/get_version.py +8 -0
  9. {completor-0.1.3 → completor-1.0.1}/completor/hook_implementations/jobs.py +21 -13
  10. {completor-0.1.3 → completor-1.0.1}/completor/input_validation.py +54 -42
  11. {completor-0.1.3 → completor-1.0.1}/completor/launch_args_parser.py +7 -12
  12. {completor-0.1.3 → completor-1.0.1}/completor/logger.py +3 -3
  13. completor-1.0.1/completor/main.py +228 -0
  14. {completor-0.1.3 → completor-1.0.1}/completor/parse.py +104 -93
  15. {completor-0.1.3 → completor-1.0.1}/completor/prepare_outputs.py +594 -458
  16. {completor-0.1.3 → completor-1.0.1}/completor/read_casefile.py +250 -198
  17. completor-1.0.1/completor/read_schedule.py +463 -0
  18. completor-1.0.1/completor/utils.py +387 -0
  19. {completor-0.1.3 → completor-1.0.1}/completor/visualization.py +1 -14
  20. {completor-0.1.3 → completor-1.0.1}/completor/visualize_well.py +29 -27
  21. completor-1.0.1/completor/wells.py +271 -0
  22. {completor-0.1.3 → completor-1.0.1}/pyproject.toml +12 -13
  23. completor-0.1.3/completor/completion.py +0 -1042
  24. completor-0.1.3/completor/constants.py +0 -256
  25. completor-0.1.3/completor/create_output.py +0 -462
  26. completor-0.1.3/completor/create_wells.py +0 -314
  27. completor-0.1.3/completor/exceptions/__init__.py +0 -4
  28. completor-0.1.3/completor/main.py +0 -486
  29. completor-0.1.3/completor/pvt_model.py +0 -14
  30. completor-0.1.3/completor/read_schedule.py +0 -160
  31. completor-0.1.3/completor/utils.py +0 -185
  32. {completor-0.1.3 → completor-1.0.1}/LICENSE +0 -0
  33. {completor-0.1.3 → completor-1.0.1}/completor/__init__.py +0 -0
  34. {completor-0.1.3 → completor-1.0.1}/completor/config_jobs/run_completor +0 -0
  35. {completor-0.1.3 → completor-1.0.1}/completor/exceptions/clean_exceptions.py +0 -0
@@ -1,29 +1,28 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: completor
3
- Version: 0.1.3
3
+ Version: 1.0.1
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.8.1,<3.12
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
- Requires-Dist: ert (>=10.1.2,<11.0.0) ; extra == "ert"
21
- Requires-Dist: matplotlib (>=3.7,<4.0)
22
- Requires-Dist: numpy (>=1.24,<2.0)
23
- Requires-Dist: pandas (==1.5.3)
17
+ Requires-Dist: ert (>=11.1.0,<12.0.0) ; extra == "ert"
18
+ Requires-Dist: matplotlib (>=3.9.2,<4.0.0)
19
+ Requires-Dist: numpy (<2.0.0)
20
+ Requires-Dist: pandas (>=2.2.3,<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.10,<2.0)
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.8 to 3.11
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.8 to 3.11](https://www.python.org/downloads/) installed.
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.8 to 3.11
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.8 to 3.11](https://www.python.org/downloads/) installed.
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