fargopy 1.0.3__tar.gz → 1.0.5__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.5}/PKG-INFO +5 -4
- {fargopy-1.0.3 → fargopy-1.0.5}/README.md +3 -2
- {fargopy-1.0.3 → fargopy-1.0.5}/setup.py +2 -2
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/base.py +1 -1
- {fargopy-1.0.3 → fargopy-1.0.5/src/fargopy.egg-info}/PKG-INFO +5 -4
- {fargopy-1.0.3 → fargopy-1.0.5}/LICENSE +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/pyproject.toml +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/setup.cfg +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/__init__.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/bin/ifargopy +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/bin/vfargopy +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/data/fargopy_logo.png +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/fields.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/flux.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/plot.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/simulation.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/sys.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/tests/test_base.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/tests/test_flux.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy/tests/test_interp.py +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy.egg-info/SOURCES.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy.egg-info/dependency_links.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy.egg-info/entry_points.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/src/fargopy.egg-info/requires.txt +0 -0
- {fargopy-1.0.3 → fargopy-1.0.5}/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.5
|
|
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
|
|
@@ -424,7 +425,7 @@ If you use `FARGOpy` in your research, please cite:
|
|
|
424
425
|
}
|
|
425
426
|
```
|
|
426
427
|
|
|
427
|
-
You may also cite our first science paper using the package:
|
|
428
|
+
<!-- You may also cite our first science paper using the package:
|
|
428
429
|
|
|
429
430
|
```bibtex
|
|
430
431
|
@article{Zuluaga2026,
|
|
@@ -434,7 +435,7 @@ You may also cite our first science paper using the package:
|
|
|
434
435
|
journal = {In preparation},
|
|
435
436
|
url = {https://github.com/seap-udea/fargopy}
|
|
436
437
|
}
|
|
437
|
-
```
|
|
438
|
+
``` -->
|
|
438
439
|
|
|
439
440
|
## Authors and Licensing
|
|
440
441
|
|
|
@@ -90,6 +90,7 @@ try:
|
|
|
90
90
|
%pip install -Uq git+https://github.com/seap-udea/fargopy
|
|
91
91
|
except ImportError:
|
|
92
92
|
print("Not running in Colab, skipping installation")
|
|
93
|
+
%mkdir -p ./gallery/
|
|
93
94
|
```
|
|
94
95
|
|
|
95
96
|
Not running in Colab, skipping installation
|
|
@@ -378,7 +379,7 @@ If you use `FARGOpy` in your research, please cite:
|
|
|
378
379
|
}
|
|
379
380
|
```
|
|
380
381
|
|
|
381
|
-
You may also cite our first science paper using the package:
|
|
382
|
+
<!-- You may also cite our first science paper using the package:
|
|
382
383
|
|
|
383
384
|
```bibtex
|
|
384
385
|
@article{Zuluaga2026,
|
|
@@ -388,7 +389,7 @@ You may also cite our first science paper using the package:
|
|
|
388
389
|
journal = {In preparation},
|
|
389
390
|
url = {https://github.com/seap-udea/fargopy}
|
|
390
391
|
}
|
|
391
|
-
```
|
|
392
|
+
``` -->
|
|
392
393
|
|
|
393
394
|
## Authors and Licensing
|
|
394
395
|
|
|
@@ -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.5',
|
|
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.5
|
|
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
|
|
@@ -424,7 +425,7 @@ If you use `FARGOpy` in your research, please cite:
|
|
|
424
425
|
}
|
|
425
426
|
```
|
|
426
427
|
|
|
427
|
-
You may also cite our first science paper using the package:
|
|
428
|
+
<!-- You may also cite our first science paper using the package:
|
|
428
429
|
|
|
429
430
|
```bibtex
|
|
430
431
|
@article{Zuluaga2026,
|
|
@@ -434,7 +435,7 @@ You may also cite our first science paper using the package:
|
|
|
434
435
|
journal = {In preparation},
|
|
435
436
|
url = {https://github.com/seap-udea/fargopy}
|
|
436
437
|
}
|
|
437
|
-
```
|
|
438
|
+
``` -->
|
|
438
439
|
|
|
439
440
|
## Authors and Licensing
|
|
440
441
|
|
|
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
|