eqcctpro 0.4.2__tar.gz → 0.4.3__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.
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/PKG-INFO +16 -13
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/README.md +15 -12
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro.egg-info/PKG-INFO +16 -13
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/setup.py +1 -1
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro/__init__.py +0 -0
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro.egg-info/SOURCES.txt +0 -0
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro.egg-info/dependency_links.txt +0 -0
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro.egg-info/requires.txt +0 -0
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/eqcctpro.egg-info/top_level.txt +0 -0
- {eqcctpro-0.4.2 → eqcctpro-0.4.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
Requires-Dist: numpy==1.26.4
|
|
6
6
|
Requires-Dist: pandas==2.2.3
|
|
@@ -40,22 +40,26 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
|
|
|
40
40
|
|
|
41
41
|
## Installation
|
|
42
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
|
|
43
|
+
1. Install **EQCCTPro** out the box with no sample waveform data to test the application with (experts)
|
|
44
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
45
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.
|
|
46
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
49
|
+
```sh
|
|
50
|
+
**`pip install eqcctpro`**
|
|
51
|
+
```
|
|
52
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
50
53
|
|
|
54
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
51
55
|
```sh
|
|
52
|
-
[skevofilaxc] conda create --name
|
|
53
|
-
[skevofilaxc] conda activate
|
|
56
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
57
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
54
58
|
[skevofilaxc] python3 --version
|
|
55
59
|
Python 3.10.14 (it should return)
|
|
56
60
|
[skevofilaxc] pip install eqcctpro
|
|
57
61
|
```
|
|
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
|
|
62
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
59
63
|
You can pull the `EQCCTPro` folder by running the following commands:
|
|
60
64
|
|
|
61
65
|
```sh
|
|
@@ -66,11 +70,10 @@ You can pull the `EQCCTPro` folder by running the following commands:
|
|
|
66
70
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
67
71
|
```
|
|
68
72
|
|
|
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
|
|
73
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
74
|
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:
|
|
73
75
|
|
|
76
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
74
77
|
```sh
|
|
75
78
|
[skevofilaxc] mkdir my_work_directory
|
|
76
79
|
[skevofilaxc] cd my_work_directory
|
|
@@ -85,7 +88,7 @@ After creating and activating the conda environment, install the **EQCCTPro Pyth
|
|
|
85
88
|
```sh
|
|
86
89
|
[skevofilaxc] pip install eqcctpro
|
|
87
90
|
```
|
|
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/).
|
|
91
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
89
92
|
|
|
90
93
|
## Creating a Test Workspace Environment
|
|
91
94
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -11,22 +11,26 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
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
|
|
14
|
+
1. Install **EQCCTPro** out the box with no sample waveform data to test the application with (experts)
|
|
15
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
16
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.
|
|
17
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
20
|
+
```sh
|
|
21
|
+
**`pip install eqcctpro`**
|
|
22
|
+
```
|
|
23
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
21
24
|
|
|
25
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
22
26
|
```sh
|
|
23
|
-
[skevofilaxc] conda create --name
|
|
24
|
-
[skevofilaxc] conda activate
|
|
27
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
28
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
25
29
|
[skevofilaxc] python3 --version
|
|
26
30
|
Python 3.10.14 (it should return)
|
|
27
31
|
[skevofilaxc] pip install eqcctpro
|
|
28
32
|
```
|
|
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
|
|
33
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
30
34
|
You can pull the `EQCCTPro` folder by running the following commands:
|
|
31
35
|
|
|
32
36
|
```sh
|
|
@@ -37,11 +41,10 @@ You can pull the `EQCCTPro` folder by running the following commands:
|
|
|
37
41
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
38
42
|
```
|
|
39
43
|
|
|
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
|
|
44
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
45
|
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:
|
|
44
46
|
|
|
47
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
45
48
|
```sh
|
|
46
49
|
[skevofilaxc] mkdir my_work_directory
|
|
47
50
|
[skevofilaxc] cd my_work_directory
|
|
@@ -56,7 +59,7 @@ After creating and activating the conda environment, install the **EQCCTPro Pyth
|
|
|
56
59
|
```sh
|
|
57
60
|
[skevofilaxc] pip install eqcctpro
|
|
58
61
|
```
|
|
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/).
|
|
62
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
60
63
|
|
|
61
64
|
## Creating a Test Workspace Environment
|
|
62
65
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Description-Content-Type: text/markdown
|
|
5
5
|
Requires-Dist: numpy==1.26.4
|
|
6
6
|
Requires-Dist: pandas==2.2.3
|
|
@@ -40,22 +40,26 @@ EQCCTPro is a high-performace seismic event detection and processing framework t
|
|
|
40
40
|
|
|
41
41
|
## Installation
|
|
42
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
|
|
43
|
+
1. Install **EQCCTPro** out the box with no sample waveform data to test the application with (experts)
|
|
44
|
+
2. Install **EQCCTPro** with the sample waveform data as provided from the Github folder (first-time users)
|
|
45
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.
|
|
46
|
+
It is **highly** recommended you pull the `EQCCTPro` folder to gain access to the sample waveform data and code to help you get acquainted with **EQCCTPro** and its capabilites.
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
However, if you wish to install **only the EQCCTPro Python package and use it out of the box** (method 1), run:
|
|
49
|
+
```sh
|
|
50
|
+
**`pip install eqcctpro`**
|
|
51
|
+
```
|
|
52
|
+
**You must have at least Python verison 3.10.14 for the application to run**.
|
|
50
53
|
|
|
54
|
+
You can install Python 3.10.14 using either traditional methods or do the following commands:
|
|
51
55
|
```sh
|
|
52
|
-
[skevofilaxc] conda create --name
|
|
53
|
-
[skevofilaxc] conda activate
|
|
56
|
+
[skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
|
|
57
|
+
[skevofilaxc] conda activate yourenvironemntname
|
|
54
58
|
[skevofilaxc] python3 --version
|
|
55
59
|
Python 3.10.14 (it should return)
|
|
56
60
|
[skevofilaxc] pip install eqcctpro
|
|
57
61
|
```
|
|
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
|
|
62
|
+
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 to help you get acquainted with **EQCCTPro's** functionality.
|
|
59
63
|
You can pull the `EQCCTPro` folder by running the following commands:
|
|
60
64
|
|
|
61
65
|
```sh
|
|
@@ -66,11 +70,10 @@ You can pull the `EQCCTPro` folder by running the following commands:
|
|
|
66
70
|
[skevofilaxc] git sparse-checkout set eqcctpro
|
|
67
71
|
```
|
|
68
72
|
|
|
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
|
|
73
|
+
If you wish to install **EQCCTPro** with the sample waveform data as **originally intended for first-time users**, 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
74
|
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:
|
|
73
75
|
|
|
76
|
+
You can pull the `EQCCTPro` folder, create the precreated conda environment, and activate it as originally intended for first-time users using the following commands:
|
|
74
77
|
```sh
|
|
75
78
|
[skevofilaxc] mkdir my_work_directory
|
|
76
79
|
[skevofilaxc] cd my_work_directory
|
|
@@ -85,7 +88,7 @@ After creating and activating the conda environment, install the **EQCCTPro Pyth
|
|
|
85
88
|
```sh
|
|
86
89
|
[skevofilaxc] pip install eqcctpro
|
|
87
90
|
```
|
|
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/).
|
|
91
|
+
The pip package will install the remaining packages needed for **EQCCTPro** to work. More information on the eqcctpro pip package can be found at our PyPi project link here [(EQCCTPro)](https://pypi.org/project/eqcctpro/).
|
|
89
92
|
|
|
90
93
|
## Creating a Test Workspace Environment
|
|
91
94
|
It's highly suggested to create a workspace environment to first understand how eqcctpro works.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|