InferAGNI 26.2.19__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.
- inferagni-26.2.19/InferAGNI.egg-info/PKG-INFO +68 -0
- inferagni-26.2.19/InferAGNI.egg-info/SOURCES.txt +17 -0
- inferagni-26.2.19/InferAGNI.egg-info/dependency_links.txt +1 -0
- inferagni-26.2.19/InferAGNI.egg-info/entry_points.txt +2 -0
- inferagni-26.2.19/InferAGNI.egg-info/requires.txt +29 -0
- inferagni-26.2.19/InferAGNI.egg-info/top_level.txt +1 -0
- inferagni-26.2.19/LICENSE.txt +674 -0
- inferagni-26.2.19/PKG-INFO +68 -0
- inferagni-26.2.19/README.md +16 -0
- inferagni-26.2.19/pyproject.toml +162 -0
- inferagni-26.2.19/setup.cfg +4 -0
- inferagni-26.2.19/src/inferagni/__init__.py +12 -0
- inferagni-26.2.19/src/inferagni/cli.py +133 -0
- inferagni-26.2.19/src/inferagni/grid.py +346 -0
- inferagni-26.2.19/src/inferagni/planets.py +45 -0
- inferagni-26.2.19/src/inferagni/plot.py +588 -0
- inferagni-26.2.19/src/inferagni/retrieve.py +367 -0
- inferagni-26.2.19/src/inferagni/util.py +158 -0
- inferagni-26.2.19/tests/test_init.py +7 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: InferAGNI
|
|
3
|
+
Version: 26.2.19
|
|
4
|
+
Summary: Infer planet properties using AGNI as a static structure model
|
|
5
|
+
Author-email: Harrison Nicholls <harrison.nicholls@ast.cam.ac.uk>
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Project-URL: homepage, https://www.h-nicholls.space/AGNI/
|
|
8
|
+
Project-URL: issues, https://github.com/nichollsh/InferAGNI/issues
|
|
9
|
+
Project-URL: source, https://github.com/nichollsh/InferAGNI/
|
|
10
|
+
Project-URL: documentation, https://www.h-nicholls.space/AGNI/
|
|
11
|
+
Project-URL: changelog, https://github.com/nichollsh/InferAGNI/releases
|
|
12
|
+
Keywords: Astronomy,Exoplanets,Model-coupling
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
21
|
+
Requires-Python: >=3.12
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE.txt
|
|
24
|
+
Requires-Dist: cmcrameri
|
|
25
|
+
Requires-Dist: matplotlib
|
|
26
|
+
Requires-Dist: netCDF4
|
|
27
|
+
Requires-Dist: numpy>=2.0.0
|
|
28
|
+
Requires-Dist: pandas
|
|
29
|
+
Requires-Dist: scipy
|
|
30
|
+
Requires-Dist: pre-commit
|
|
31
|
+
Requires-Dist: platformdirs
|
|
32
|
+
Requires-Dist: ruff
|
|
33
|
+
Requires-Dist: click
|
|
34
|
+
Requires-Dist: emcee
|
|
35
|
+
Requires-Dist: corner
|
|
36
|
+
Requires-Dist: adjusttext
|
|
37
|
+
Requires-Dist: exoatlas
|
|
38
|
+
Provides-Extra: develop
|
|
39
|
+
Requires-Dist: coverage; extra == "develop"
|
|
40
|
+
Requires-Dist: tomlkit>=0.11.0; extra == "develop"
|
|
41
|
+
Requires-Dist: pytest>=8.1; extra == "develop"
|
|
42
|
+
Requires-Dist: pytest-cov; extra == "develop"
|
|
43
|
+
Requires-Dist: pytest-timeout; extra == "develop"
|
|
44
|
+
Requires-Dist: ruff; extra == "develop"
|
|
45
|
+
Requires-Dist: pre-commit; extra == "develop"
|
|
46
|
+
Provides-Extra: docs
|
|
47
|
+
Requires-Dist: markdown-include; extra == "docs"
|
|
48
|
+
Requires-Dist: mkdocs; extra == "docs"
|
|
49
|
+
Requires-Dist: mkdocs-material; extra == "docs"
|
|
50
|
+
Requires-Dist: mkdocstrings[python]; extra == "docs"
|
|
51
|
+
Dynamic: license-file
|
|
52
|
+
|
|
53
|
+
# AGNI Inference Package
|
|
54
|
+
Inferring planet properties using AGNI as a static structure model.
|
|
55
|
+
|
|
56
|
+
## Get started
|
|
57
|
+
1. Install Python 3.12 and a distribution of conda
|
|
58
|
+
2. `pip install -e .`
|
|
59
|
+
3. `inferagni infer "L 98-59 d"`
|
|
60
|
+
|
|
61
|
+
### Quick links
|
|
62
|
+
* AGNI repo: https://github.com/nichollsh/AGNI/
|
|
63
|
+
* AGNI docs: https://www.h-nicholls.space/AGNI/
|
|
64
|
+
* Zalmoxis docs: https://proteus-framework.org/Zalmoxis/
|
|
65
|
+
* Paper: https://www.overleaf.com/project/6853d410bda854791be86cd7
|
|
66
|
+
|
|
67
|
+
Available under GPLv3. Copyright (c) 2026 Harrison Nicholls.
|
|
68
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
LICENSE.txt
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
InferAGNI.egg-info/PKG-INFO
|
|
5
|
+
InferAGNI.egg-info/SOURCES.txt
|
|
6
|
+
InferAGNI.egg-info/dependency_links.txt
|
|
7
|
+
InferAGNI.egg-info/entry_points.txt
|
|
8
|
+
InferAGNI.egg-info/requires.txt
|
|
9
|
+
InferAGNI.egg-info/top_level.txt
|
|
10
|
+
src/inferagni/__init__.py
|
|
11
|
+
src/inferagni/cli.py
|
|
12
|
+
src/inferagni/grid.py
|
|
13
|
+
src/inferagni/planets.py
|
|
14
|
+
src/inferagni/plot.py
|
|
15
|
+
src/inferagni/retrieve.py
|
|
16
|
+
src/inferagni/util.py
|
|
17
|
+
tests/test_init.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
cmcrameri
|
|
2
|
+
matplotlib
|
|
3
|
+
netCDF4
|
|
4
|
+
numpy>=2.0.0
|
|
5
|
+
pandas
|
|
6
|
+
scipy
|
|
7
|
+
pre-commit
|
|
8
|
+
platformdirs
|
|
9
|
+
ruff
|
|
10
|
+
click
|
|
11
|
+
emcee
|
|
12
|
+
corner
|
|
13
|
+
adjusttext
|
|
14
|
+
exoatlas
|
|
15
|
+
|
|
16
|
+
[develop]
|
|
17
|
+
coverage
|
|
18
|
+
tomlkit>=0.11.0
|
|
19
|
+
pytest>=8.1
|
|
20
|
+
pytest-cov
|
|
21
|
+
pytest-timeout
|
|
22
|
+
ruff
|
|
23
|
+
pre-commit
|
|
24
|
+
|
|
25
|
+
[docs]
|
|
26
|
+
markdown-include
|
|
27
|
+
mkdocs
|
|
28
|
+
mkdocs-material
|
|
29
|
+
mkdocstrings[python]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
inferagni
|