completor 0.1.3__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.
Files changed (33) hide show
  1. {completor-0.1.3 → completor-1.0.0}/PKG-INFO +10 -11
  2. {completor-0.1.3 → completor-1.0.0}/README.md +2 -2
  3. {completor-0.1.3 → completor-1.0.0}/completor/completion.py +152 -542
  4. completor-1.0.0/completor/constants.py +329 -0
  5. completor-1.0.0/completor/create_output.py +590 -0
  6. {completor-0.1.3 → completor-1.0.0}/completor/exceptions/exceptions.py +6 -6
  7. completor-1.0.0/completor/get_version.py +8 -0
  8. {completor-0.1.3 → completor-1.0.0}/completor/hook_implementations/jobs.py +2 -3
  9. {completor-0.1.3 → completor-1.0.0}/completor/input_validation.py +53 -41
  10. {completor-0.1.3 → completor-1.0.0}/completor/launch_args_parser.py +7 -12
  11. {completor-0.1.3 → completor-1.0.0}/completor/logger.py +3 -3
  12. completor-1.0.0/completor/main.py +228 -0
  13. {completor-0.1.3 → completor-1.0.0}/completor/parse.py +104 -93
  14. {completor-0.1.3 → completor-1.0.0}/completor/prepare_outputs.py +593 -457
  15. {completor-0.1.3 → completor-1.0.0}/completor/read_casefile.py +248 -197
  16. completor-1.0.0/completor/read_schedule.py +463 -0
  17. completor-1.0.0/completor/utils.py +416 -0
  18. {completor-0.1.3 → completor-1.0.0}/completor/visualization.py +1 -14
  19. {completor-0.1.3 → completor-1.0.0}/completor/visualize_well.py +29 -27
  20. completor-1.0.0/completor/wells.py +273 -0
  21. {completor-0.1.3 → completor-1.0.0}/pyproject.toml +9 -10
  22. completor-0.1.3/completor/constants.py +0 -256
  23. completor-0.1.3/completor/create_output.py +0 -462
  24. completor-0.1.3/completor/create_wells.py +0 -314
  25. completor-0.1.3/completor/main.py +0 -486
  26. completor-0.1.3/completor/pvt_model.py +0 -14
  27. completor-0.1.3/completor/read_schedule.py +0 -160
  28. completor-0.1.3/completor/utils.py +0 -185
  29. {completor-0.1.3 → completor-1.0.0}/LICENSE +0 -0
  30. {completor-0.1.3 → completor-1.0.0}/completor/__init__.py +0 -0
  31. {completor-0.1.3 → completor-1.0.0}/completor/config_jobs/run_completor +0 -0
  32. {completor-0.1.3 → completor-1.0.0}/completor/exceptions/__init__.py +0 -0
  33. {completor-0.1.3 → 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.1.3
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.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
17
  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)
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.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