paddle 1.1.5__py3-none-any.whl → 1.1.7__py3-none-any.whl
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.
- paddle/__init__.py +1 -1
- {paddle-1.1.5.dist-info → paddle-1.1.7.dist-info}/METADATA +39 -11
- {paddle-1.1.5.dist-info → paddle-1.1.7.dist-info}/RECORD +6 -6
- {paddle-1.1.5.dist-info → paddle-1.1.7.dist-info}/WHEEL +0 -0
- {paddle-1.1.5.dist-info → paddle-1.1.7.dist-info}/entry_points.txt +0 -0
- {paddle-1.1.5.dist-info → paddle-1.1.7.dist-info}/licenses/LICENSE +0 -0
paddle/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paddle
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.7
|
|
4
4
|
Summary: Python Atmospheric Dynamics: Discovery and Learning about Exoplanets. An open-source, user-friendly python frontend of canoe
|
|
5
5
|
Project-URL: Homepage, https://github.com/elijah-mullens/paddle
|
|
6
6
|
Project-URL: Repository, https://github.com/elijah-mullens/paddle
|
|
@@ -23,7 +23,8 @@ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
|
23
23
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
24
24
|
Requires-Python: >=3.9
|
|
25
25
|
Requires-Dist: kintera>=1.1.5
|
|
26
|
-
Requires-Dist:
|
|
26
|
+
Requires-Dist: scipy
|
|
27
|
+
Requires-Dist: snapy>=0.8.1
|
|
27
28
|
Requires-Dist: torch<=2.7.1,>=2.7.0
|
|
28
29
|
Provides-Extra: dev
|
|
29
30
|
Requires-Dist: pytest>=7; extra == 'dev'
|
|
@@ -33,43 +34,66 @@ Description-Content-Type: text/markdown
|
|
|
33
34
|
Python Atmospheric Dynamics: Discovering and Learning about Exoplanets. An open-source, user-friendly python version of canoe.
|
|
34
35
|
|
|
35
36
|
## Install docker and docker-compose plugin
|
|
37
|
+
1. install docker with compose
|
|
38
|
+
```bash
|
|
39
|
+
curl -fsSL https://get.docker.com | sudo sh
|
|
40
|
+
```
|
|
36
41
|
|
|
42
|
+
1. start docker
|
|
43
|
+
sudo systemctl start docker
|
|
37
44
|
|
|
38
|
-
##
|
|
45
|
+
## Test package
|
|
46
|
+
1. Create a python virtual environment
|
|
39
47
|
```bash
|
|
40
48
|
python -m venv pyenv
|
|
41
49
|
```
|
|
42
50
|
|
|
43
|
-
|
|
51
|
+
2. Install paddle package
|
|
52
|
+
```bash
|
|
53
|
+
pip install paddle
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
3. Run test
|
|
57
|
+
```bash
|
|
58
|
+
cd tests
|
|
59
|
+
python test_saturn_adiabat.py
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Docker user guide
|
|
63
|
+
|
|
64
|
+
2. Create a docker container
|
|
44
65
|
```bash
|
|
45
66
|
make up
|
|
46
67
|
```
|
|
47
68
|
|
|
48
|
-
|
|
69
|
+
3. Terminate a docker container
|
|
49
70
|
```bash
|
|
50
71
|
make down
|
|
51
72
|
```
|
|
52
73
|
|
|
53
|
-
|
|
74
|
+
4. Start a docker container
|
|
54
75
|
```bash
|
|
55
76
|
make start
|
|
56
77
|
```
|
|
57
78
|
|
|
58
|
-
|
|
79
|
+
5. Build a new docker image (rarely used)
|
|
59
80
|
```bash
|
|
60
81
|
make build
|
|
61
82
|
```
|
|
62
83
|
|
|
63
|
-
## For
|
|
84
|
+
## For Developer
|
|
85
|
+
|
|
86
|
+
### Clone repository
|
|
87
|
+
```bash
|
|
88
|
+
https://github.com/elijah-mullens/paddle
|
|
89
|
+
```
|
|
90
|
+
|
|
64
91
|
### Cache your github credential
|
|
65
92
|
```bash
|
|
66
93
|
git config credential.helper 'cache --timeout=86400'
|
|
67
94
|
```
|
|
68
95
|
|
|
69
96
|
### Install paddle package
|
|
70
|
-
```bash
|
|
71
|
-
pip install paddle
|
|
72
|
-
```
|
|
73
97
|
|
|
74
98
|
### Install pre-commit hook
|
|
75
99
|
```bash
|
|
@@ -80,3 +104,7 @@ pip install pre-commit
|
|
|
80
104
|
```bash
|
|
81
105
|
pre-commit install
|
|
82
106
|
```
|
|
107
|
+
|
|
108
|
+
## Troubleshooting
|
|
109
|
+
1. If you do not have docker compose
|
|
110
|
+
Remove your current docker installation, it could be docker or docker.io
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
paddle/__init__.py,sha256=
|
|
1
|
+
paddle/__init__.py,sha256=0sXyApJNRCDDotSEpUFj3478iulB_JpdN8c6puMFHBM,281
|
|
2
2
|
paddle/crm.py,sha256=HwOLAojR5LBcptqjAC9APEJiWpn8GhxPiAmvvIZ4mTM,1986
|
|
3
3
|
paddle/evolve_kinetics.py,sha256=OWt1-SiLTzaWUCIchwRnBHCjbtcgJIIxrlQ5Lk4iN8c,1541
|
|
4
4
|
paddle/find_init_params.py,sha256=dyRmo-LTwVohbPhSH5LV45jL_XeRmNEcuKPvafBklto,2516
|
|
@@ -6,8 +6,8 @@ paddle/nc2pt.py,sha256=LXR0fnUTaOA_uaDsLU4YqdAVFyycB6SvRq12xWhHhLA,1136
|
|
|
6
6
|
paddle/pt2nc.py,sha256=lLviBm6a2O05RvuPQc8DxV5pGr_VEhlSkrKPV1lQ3yU,3913
|
|
7
7
|
paddle/setup_profile.py,sha256=oJpqPnlq2q1rn_l2flwgbdWwbxbhxx4QOYl4ezWmP-o,8803
|
|
8
8
|
paddle/write_profile.py,sha256=HeBtGaFixGv8DnmJWPiQs-30RsdplSObhMA6ky6eVrg,3908
|
|
9
|
-
paddle-1.1.
|
|
10
|
-
paddle-1.1.
|
|
11
|
-
paddle-1.1.
|
|
12
|
-
paddle-1.1.
|
|
13
|
-
paddle-1.1.
|
|
9
|
+
paddle-1.1.7.dist-info/METADATA,sha256=zi-PFuavHNXea2d7aWZz3_Mx7bL_5KBJ6BUN-Ks10cM,2686
|
|
10
|
+
paddle-1.1.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
11
|
+
paddle-1.1.7.dist-info/entry_points.txt,sha256=pDR96GW6ylBZrbFd-tRGthW8qTuYaSLjrEt1LFIEYto,48
|
|
12
|
+
paddle-1.1.7.dist-info/licenses/LICENSE,sha256=e6NthgKABUnLRqjuETcBGgsOuA-aJANpNoeXMe9RBso,1071
|
|
13
|
+
paddle-1.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|