fargopy 1.0.3__tar.gz → 1.0.4__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.
- {fargopy-1.0.3/src/fargopy.egg-info → fargopy-1.0.4}/PKG-INFO +3 -2
- {fargopy-1.0.3 → fargopy-1.0.4}/README.md +1 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/setup.py +2 -2
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/base.py +1 -1
- {fargopy-1.0.3 → fargopy-1.0.4/src/fargopy.egg-info}/PKG-INFO +3 -2
- {fargopy-1.0.3 → fargopy-1.0.4}/LICENSE +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/pyproject.toml +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/setup.cfg +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/__init__.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/bin/ifargopy +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/bin/vfargopy +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/data/fargopy_logo.png +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/fields.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/flux.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/plot.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/simulation.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/sys.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_base.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_flux.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy/tests/test_interp.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/SOURCES.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/dependency_links.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/entry_points.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/requires.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.4}/src/fargopy.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fargopy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: FARGO3D Wrapper
|
|
5
5
|
Home-page: https://pypi.org/project/fargopy
|
|
6
6
|
Author: Jorge Zuluaga, Alejandro Murillo-González, Matias Montesinos
|
|
@@ -9,7 +9,7 @@ License: AGPL-3.0-only
|
|
|
9
9
|
Keywords: astronomy MHD CFD
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Development Status ::
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Science/Research
|
|
14
14
|
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
@@ -136,6 +136,7 @@ try:
|
|
|
136
136
|
%pip install -Uq git+https://github.com/seap-udea/fargopy
|
|
137
137
|
except ImportError:
|
|
138
138
|
print("Not running in Colab, skipping installation")
|
|
139
|
+
%mkdir -p ./gallery/
|
|
139
140
|
```
|
|
140
141
|
|
|
141
142
|
Not running in Colab, skipping installation
|
|
@@ -22,12 +22,12 @@ setuptools.setup(
|
|
|
22
22
|
classifiers=[
|
|
23
23
|
"Programming Language :: Python :: 3",
|
|
24
24
|
"Operating System :: OS Independent",
|
|
25
|
-
"Development Status ::
|
|
25
|
+
"Development Status :: 4 - Beta",
|
|
26
26
|
"Intended Audience :: Science/Research",
|
|
27
27
|
"Topic :: Scientific/Engineering :: Astronomy",
|
|
28
28
|
"Topic :: Scientific/Engineering :: Physics",
|
|
29
29
|
],
|
|
30
|
-
version='1.0.
|
|
30
|
+
version='1.0.4',
|
|
31
31
|
# ######################################################################
|
|
32
32
|
# FILES
|
|
33
33
|
# ######################################################################
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fargopy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: FARGO3D Wrapper
|
|
5
5
|
Home-page: https://pypi.org/project/fargopy
|
|
6
6
|
Author: Jorge Zuluaga, Alejandro Murillo-González, Matias Montesinos
|
|
@@ -9,7 +9,7 @@ License: AGPL-3.0-only
|
|
|
9
9
|
Keywords: astronomy MHD CFD
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Development Status ::
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Science/Research
|
|
14
14
|
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
@@ -136,6 +136,7 @@ try:
|
|
|
136
136
|
%pip install -Uq git+https://github.com/seap-udea/fargopy
|
|
137
137
|
except ImportError:
|
|
138
138
|
print("Not running in Colab, skipping installation")
|
|
139
|
+
%mkdir -p ./gallery/
|
|
139
140
|
```
|
|
140
141
|
|
|
141
142
|
Not running in Colab, skipping installation
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|