eqcctpro 0.4.1__tar.gz → 0.4.2__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.

Potentially problematic release.


This version of eqcctpro might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: eqcctpro
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Description-Content-Type: text/markdown
5
5
  Requires-Dist: numpy==1.26.4
6
6
  Requires-Dist: pandas==2.2.3
@@ -39,14 +39,37 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
39
39
  - Efficient handling of large-scale seismic data
40
40
 
41
41
  ## Installation
42
- To install the necessary dependencies, create a conda environment using:
42
+ To install `EQCCTPro`, there are two installation approaches:
43
+ 1. Install **EQCCTPro** out the box with no sample waveform data to test the application with
44
+ 2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder
45
+
46
+ It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data to help you get acquainted with **EQCCTPro** and its capabilites.
47
+
48
+ If you wish to install **only the EQCCTPro Python package and use it out of the box (method 1)**, run **`pip install eqcctpro`**. **You must have at least Python verison 3.10.14 for the application to run**.
49
+ You can install Python 3.10.14 using either traditional methods or do the following commands:
43
50
 
44
51
  ```sh
45
- [skevofilaxc] conda env create -f environment.yml
46
- [skevofilaxc] conda activate eqcctpro
52
+ [skevofilaxc] conda create --name yourname python=3.10.14 -y
53
+ [skevofilaxc] conda activate yourname
54
+ [skevofilaxc] python3 --version
55
+ Python 3.10.14 (it should return)
56
+ [skevofilaxc] pip install eqcctpro
57
+ ```
58
+ You will have access to **EQCCTPro** and its capabilities, however, it is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and to get acquainted with **EQCCTPro**.
59
+ You can pull the `EQCCTPro` folder by running the following commands:
60
+
61
+ ```sh
62
+ [skevofilaxc] mkdir my_work_directory
63
+ [skevofilaxc] cd my_work_directory
64
+ [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
65
+ [skevofilaxc] cd eqcct
66
+ [skevofilaxc] git sparse-checkout set eqcctpro
47
67
  ```
48
68
 
49
- You can get the `environment.yml` file from the `eqcct` repository. You can download the entire eqcct repository or download only the `eqcctpro` repository using the following command:
69
+
70
+ If you wish to install **EQCCTPro** with the sample waveform data as originally intended, and or are having trouble installing Python 3.10.14, there has been a precreated conda environment under the `EQCCTPro` folder that will install the necessary packages
71
+ and dependencies needed for **EQCCTPro** to run (method 2).
72
+ You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it using the following commands:
50
73
 
51
74
  ```sh
52
75
  [skevofilaxc] mkdir my_work_directory
@@ -54,12 +77,15 @@ You can get the `environment.yml` file from the `eqcct` repository. You can down
54
77
  [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
55
78
  [skevofilaxc] cd eqcct
56
79
  [skevofilaxc] git sparse-checkout set eqcctpro
80
+ [skevofilaxc] conda env create -f environment.yml
81
+ [skevofilaxc] conda activate eqcctpro
57
82
  ```
58
- After creating and activating the conda environment, install the **eqcctpro Python package** using the following command:
83
+
84
+ After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
59
85
  ```sh
60
86
  [skevofilaxc] pip install eqcctpro
61
87
  ```
62
- More information on the package can be found at our PyPi project link [eqcctpro](https://pypi.org/project/eqcctpro/).
88
+ The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the package can be found at our PyPi project link [EQCCTPro](https://pypi.org/project/eqcctpro/).
63
89
 
64
90
  ## Creating a Test Workspace Environment
65
91
  It's highly suggested to create a workspace environment to first understand how eqcctpro works.
@@ -299,7 +325,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
299
325
 
300
326
  1. **`find_best_overall_usecase`**
301
327
  - Returns the best overall usecase configuration
302
- - Uses middel 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
328
+ - Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
303
329
  2. **`find_optimal_for`**
304
330
  - Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
305
331
  - Enables users to quickly identify which input parameters should be used for the given amount of resources and workload they have for the minimum runtime possible on their computer
@@ -336,5 +362,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
336
362
  EQCCTPro is provided under an open-source license. See LICENSE for details.
337
363
 
338
364
  ## Contact
339
- For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
365
+ For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
340
366
 
@@ -10,14 +10,37 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
10
10
  - Efficient handling of large-scale seismic data
11
11
 
12
12
  ## Installation
13
- To install the necessary dependencies, create a conda environment using:
13
+ To install `EQCCTPro`, there are two installation approaches:
14
+ 1. Install **EQCCTPro** out the box with no sample waveform data to test the application with
15
+ 2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder
16
+
17
+ It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data to help you get acquainted with **EQCCTPro** and its capabilites.
18
+
19
+ If you wish to install **only the EQCCTPro Python package and use it out of the box (method 1)**, run **`pip install eqcctpro`**. **You must have at least Python verison 3.10.14 for the application to run**.
20
+ You can install Python 3.10.14 using either traditional methods or do the following commands:
14
21
 
15
22
  ```sh
16
- [skevofilaxc] conda env create -f environment.yml
17
- [skevofilaxc] conda activate eqcctpro
23
+ [skevofilaxc] conda create --name yourname python=3.10.14 -y
24
+ [skevofilaxc] conda activate yourname
25
+ [skevofilaxc] python3 --version
26
+ Python 3.10.14 (it should return)
27
+ [skevofilaxc] pip install eqcctpro
28
+ ```
29
+ You will have access to **EQCCTPro** and its capabilities, however, it is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and to get acquainted with **EQCCTPro**.
30
+ You can pull the `EQCCTPro` folder by running the following commands:
31
+
32
+ ```sh
33
+ [skevofilaxc] mkdir my_work_directory
34
+ [skevofilaxc] cd my_work_directory
35
+ [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
36
+ [skevofilaxc] cd eqcct
37
+ [skevofilaxc] git sparse-checkout set eqcctpro
18
38
  ```
19
39
 
20
- You can get the `environment.yml` file from the `eqcct` repository. You can download the entire eqcct repository or download only the `eqcctpro` repository using the following command:
40
+
41
+ If you wish to install **EQCCTPro** with the sample waveform data as originally intended, and or are having trouble installing Python 3.10.14, there has been a precreated conda environment under the `EQCCTPro` folder that will install the necessary packages
42
+ and dependencies needed for **EQCCTPro** to run (method 2).
43
+ You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it using the following commands:
21
44
 
22
45
  ```sh
23
46
  [skevofilaxc] mkdir my_work_directory
@@ -25,12 +48,15 @@ You can get the `environment.yml` file from the `eqcct` repository. You can down
25
48
  [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
26
49
  [skevofilaxc] cd eqcct
27
50
  [skevofilaxc] git sparse-checkout set eqcctpro
51
+ [skevofilaxc] conda env create -f environment.yml
52
+ [skevofilaxc] conda activate eqcctpro
28
53
  ```
29
- After creating and activating the conda environment, install the **eqcctpro Python package** using the following command:
54
+
55
+ After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
30
56
  ```sh
31
57
  [skevofilaxc] pip install eqcctpro
32
58
  ```
33
- More information on the package can be found at our PyPi project link [eqcctpro](https://pypi.org/project/eqcctpro/).
59
+ The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the package can be found at our PyPi project link [EQCCTPro](https://pypi.org/project/eqcctpro/).
34
60
 
35
61
  ## Creating a Test Workspace Environment
36
62
  It's highly suggested to create a workspace environment to first understand how eqcctpro works.
@@ -270,7 +296,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
270
296
 
271
297
  1. **`find_best_overall_usecase`**
272
298
  - Returns the best overall usecase configuration
273
- - Uses middel 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
299
+ - Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
274
300
  2. **`find_optimal_for`**
275
301
  - Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
276
302
  - Enables users to quickly identify which input parameters should be used for the given amount of resources and workload they have for the minimum runtime possible on their computer
@@ -307,5 +333,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
307
333
  EQCCTPro is provided under an open-source license. See LICENSE for details.
308
334
 
309
335
  ## Contact
310
- For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
336
+ For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
311
337
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: eqcctpro
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Description-Content-Type: text/markdown
5
5
  Requires-Dist: numpy==1.26.4
6
6
  Requires-Dist: pandas==2.2.3
@@ -39,14 +39,37 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
39
39
  - Efficient handling of large-scale seismic data
40
40
 
41
41
  ## Installation
42
- To install the necessary dependencies, create a conda environment using:
42
+ To install `EQCCTPro`, there are two installation approaches:
43
+ 1. Install **EQCCTPro** out the box with no sample waveform data to test the application with
44
+ 2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder
45
+
46
+ It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data to help you get acquainted with **EQCCTPro** and its capabilites.
47
+
48
+ If you wish to install **only the EQCCTPro Python package and use it out of the box (method 1)**, run **`pip install eqcctpro`**. **You must have at least Python verison 3.10.14 for the application to run**.
49
+ You can install Python 3.10.14 using either traditional methods or do the following commands:
43
50
 
44
51
  ```sh
45
- [skevofilaxc] conda env create -f environment.yml
46
- [skevofilaxc] conda activate eqcctpro
52
+ [skevofilaxc] conda create --name yourname python=3.10.14 -y
53
+ [skevofilaxc] conda activate yourname
54
+ [skevofilaxc] python3 --version
55
+ Python 3.10.14 (it should return)
56
+ [skevofilaxc] pip install eqcctpro
57
+ ```
58
+ You will have access to **EQCCTPro** and its capabilities, however, it is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and to get acquainted with **EQCCTPro**.
59
+ You can pull the `EQCCTPro` folder by running the following commands:
60
+
61
+ ```sh
62
+ [skevofilaxc] mkdir my_work_directory
63
+ [skevofilaxc] cd my_work_directory
64
+ [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
65
+ [skevofilaxc] cd eqcct
66
+ [skevofilaxc] git sparse-checkout set eqcctpro
47
67
  ```
48
68
 
49
- You can get the `environment.yml` file from the `eqcct` repository. You can download the entire eqcct repository or download only the `eqcctpro` repository using the following command:
69
+
70
+ If you wish to install **EQCCTPro** with the sample waveform data as originally intended, and or are having trouble installing Python 3.10.14, there has been a precreated conda environment under the `EQCCTPro` folder that will install the necessary packages
71
+ and dependencies needed for **EQCCTPro** to run (method 2).
72
+ You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it using the following commands:
50
73
 
51
74
  ```sh
52
75
  [skevofilaxc] mkdir my_work_directory
@@ -54,12 +77,15 @@ You can get the `environment.yml` file from the `eqcct` repository. You can down
54
77
  [skevofilaxc] git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
55
78
  [skevofilaxc] cd eqcct
56
79
  [skevofilaxc] git sparse-checkout set eqcctpro
80
+ [skevofilaxc] conda env create -f environment.yml
81
+ [skevofilaxc] conda activate eqcctpro
57
82
  ```
58
- After creating and activating the conda environment, install the **eqcctpro Python package** using the following command:
83
+
84
+ After creating and activating the conda environment, install the **EQCCTPro Python package** using the following command:
59
85
  ```sh
60
86
  [skevofilaxc] pip install eqcctpro
61
87
  ```
62
- More information on the package can be found at our PyPi project link [eqcctpro](https://pypi.org/project/eqcctpro/).
88
+ The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the package can be found at our PyPi project link [EQCCTPro](https://pypi.org/project/eqcctpro/).
63
89
 
64
90
  ## Creating a Test Workspace Environment
65
91
  It's highly suggested to create a workspace environment to first understand how eqcctpro works.
@@ -299,7 +325,7 @@ Both **OptimalCPUConfigurationFinder** and **OptimalGPUConfigurationFinder** eac
299
325
 
300
326
  1. **`find_best_overall_usecase`**
301
327
  - Returns the best overall usecase configuration
302
- - Uses middel 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
328
+ - Uses middle 50% of CPUs for moderate, balanced CPU usage, with the maximum amount of stations processed with the minimum runtime
303
329
  2. **`find_optimal_for`**
304
330
  - Return the paralleliztion configurations (EX. concurrent predictions, intra/inter thread counts, vram, etc.) for a given number of CPU(s)/GPU(s) and stations
305
331
  - Enables users to quickly identify which input parameters should be used for the given amount of resources and workload they have for the minimum runtime possible on their computer
@@ -336,5 +362,5 @@ The `environment.yml` file specifies the dependencies required to run EQCCTPro.
336
362
  EQCCTPro is provided under an open-source license. See LICENSE for details.
337
363
 
338
364
  ## Contact
339
- For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu.
365
+ For inquiries or issues, please contact constantinos.skevofilax@austin.utexas.edu or victor.salles@beg.utexas.edu.
340
366
 
@@ -1,5 +1,22 @@
1
1
  from setuptools import setup, find_packages
2
2
  import os
3
+ import sys
4
+
5
+ # Ensure the user has the latest Python version
6
+ REQUIRED_PYTHON = (3, 10, 14) # Change this to the minimum version you require
7
+
8
+ if sys.version_info < REQUIRED_PYTHON:
9
+ sys.stderr.write(f"""
10
+ ==========================
11
+ Unsupported Python version
12
+ ==========================
13
+ This package requires Python {REQUIRED_PYTHON[0]}.{REQUIRED_PYTHON[1]}.{REQUIRED_PYTHON[2]} or higher.
14
+ You are using Python {sys.version_info.major}.{sys.version_info.minor}.
15
+ Please upgrade Python and try again.
16
+
17
+ Visit https://www.python.org/downloads/ to install the latest version.
18
+ """)
19
+ sys.exit(1)
3
20
 
4
21
  # Ensure TensorFlow and CUDA are initialized before running
5
22
  os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
@@ -13,7 +30,7 @@ with open("README.md", "r") as f:
13
30
 
14
31
  setup(
15
32
  name="eqcctpro",
16
- version="0.4.1",
33
+ version="0.4.2",
17
34
  packages=find_packages(),
18
35
  install_requires=[
19
36
  "numpy==1.26.4",
File without changes
File without changes