mimical 0.1.2__tar.gz → 0.1.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.
- mimical-0.1.4/PKG-INFO +23 -0
- mimical-0.1.4/README.rst +6 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/plotting/plotting.py +0 -3
- mimical-0.1.4/mimical.egg-info/PKG-INFO +23 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical.egg-info/SOURCES.txt +1 -1
- {mimical-0.1.2 → mimical-0.1.4}/setup.py +10 -7
- mimical-0.1.2/PKG-INFO +0 -23
- mimical-0.1.2/README.md +0 -4
- mimical-0.1.2/mimical.egg-info/PKG-INFO +0 -23
- {mimical-0.1.2 → mimical-0.1.4}/mimical/__init__.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/fitting/__init__.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/fitting/fitter.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/fitting/prior_handler.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/plotting/__init__.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/utils/__init__.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical/utils/filter_set.py +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical.egg-info/dependency_links.txt +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical.egg-info/requires.txt +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/mimical.egg-info/top_level.txt +0 -0
- {mimical-0.1.2 → mimical-0.1.4}/setup.cfg +0 -0
mimical-0.1.4/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mimical
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: Intesity modelling of multiply-imaged objects
|
|
5
|
+
Author: Struan Stevenson
|
|
6
|
+
Author-email: struan.stevenson@ed.ac.uk
|
|
7
|
+
Requires-Dist: numpy
|
|
8
|
+
Requires-Dist: astropy
|
|
9
|
+
Requires-Dist: matplotlib
|
|
10
|
+
Requires-Dist: nautilus-sampler
|
|
11
|
+
Requires-Dist: petrofit
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: requires-dist
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
** Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
|
22
|
+
|
|
23
|
+
.. image:: docs/mimical_workflow.pdf
|
mimical-0.1.4/README.rst
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
** Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
|
5
|
+
|
|
6
|
+
.. image:: docs/mimical_workflow.pdf
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mimical
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: Intesity modelling of multiply-imaged objects
|
|
5
|
+
Author: Struan Stevenson
|
|
6
|
+
Author-email: struan.stevenson@ed.ac.uk
|
|
7
|
+
Requires-Dist: numpy
|
|
8
|
+
Requires-Dist: astropy
|
|
9
|
+
Requires-Dist: matplotlib
|
|
10
|
+
Requires-Dist: nautilus-sampler
|
|
11
|
+
Requires-Dist: petrofit
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: requires-dist
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
** Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
|
22
|
+
|
|
23
|
+
.. image:: docs/mimical_workflow.pdf
|
|
@@ -1,28 +1,31 @@
|
|
|
1
1
|
import setuptools
|
|
2
2
|
from setuptools import setup
|
|
3
|
-
from
|
|
3
|
+
from os import path
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
here = path.abspath(path.dirname(__file__))
|
|
6
|
+
# Get the long description from the README file
|
|
7
|
+
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
|
8
|
+
long_description = f.read()
|
|
7
9
|
|
|
8
10
|
setup(
|
|
9
11
|
name='mimical',
|
|
10
12
|
|
|
11
|
-
version='0.1.
|
|
13
|
+
version='0.1.4',
|
|
12
14
|
|
|
13
15
|
description='Intesity modelling of multiply-imaged objects',
|
|
14
16
|
|
|
15
17
|
long_description=long_description,
|
|
16
18
|
|
|
17
|
-
long_description_content_type='text/markdown',
|
|
18
|
-
|
|
19
19
|
author='Struan Stevenson',
|
|
20
20
|
|
|
21
21
|
author_email='struan.stevenson@ed.ac.uk',
|
|
22
22
|
|
|
23
23
|
packages= setuptools.find_packages(),
|
|
24
24
|
|
|
25
|
-
package_data = {'': ['*.txt', '*.fits'],},
|
|
25
|
+
package_data = {'': ['*.txt', '*.fits', '*.pdf'],},
|
|
26
|
+
|
|
27
|
+
include_package_data=True,
|
|
28
|
+
|
|
26
29
|
|
|
27
30
|
install_requires=["numpy", "astropy", "matplotlib", "nautilus-sampler", "petrofit"],
|
|
28
31
|
|
mimical-0.1.2/PKG-INFO
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: mimical
|
|
3
|
-
Version: 0.1.2
|
|
4
|
-
Summary: Intesity modelling of multiply-imaged objects
|
|
5
|
-
Author: Struan Stevenson
|
|
6
|
-
Author-email: struan.stevenson@ed.ac.uk
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist: numpy
|
|
9
|
-
Requires-Dist: astropy
|
|
10
|
-
Requires-Dist: matplotlib
|
|
11
|
-
Requires-Dist: nautilus-sampler
|
|
12
|
-
Requires-Dist: petrofit
|
|
13
|
-
Dynamic: author
|
|
14
|
-
Dynamic: author-email
|
|
15
|
-
Dynamic: description
|
|
16
|
-
Dynamic: description-content-type
|
|
17
|
-
Dynamic: requires-dist
|
|
18
|
-
Dynamic: summary
|
|
19
|
-
|
|
20
|
-
# Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
#### Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
mimical-0.1.2/README.md
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
# Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
#### Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: mimical
|
|
3
|
-
Version: 0.1.2
|
|
4
|
-
Summary: Intesity modelling of multiply-imaged objects
|
|
5
|
-
Author: Struan Stevenson
|
|
6
|
-
Author-email: struan.stevenson@ed.ac.uk
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
Requires-Dist: numpy
|
|
9
|
-
Requires-Dist: astropy
|
|
10
|
-
Requires-Dist: matplotlib
|
|
11
|
-
Requires-Dist: nautilus-sampler
|
|
12
|
-
Requires-Dist: petrofit
|
|
13
|
-
Dynamic: author
|
|
14
|
-
Dynamic: author-email
|
|
15
|
-
Dynamic: description
|
|
16
|
-
Dynamic: description-content-type
|
|
17
|
-
Dynamic: requires-dist
|
|
18
|
-
Dynamic: summary
|
|
19
|
-
|
|
20
|
-
# Mimical (Modelling the Intensity of Multiply-Imaged Celestial Ancient Light)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
#### Mimical is an intensity modelling code for multiply-imaged objects, performing simultaenous Bayseian inference of model parameters via the nested sampling algorithm. Mimical supports any astropy model, and supports user defined parameter polynomial depenency with image wavelength.
|
|
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
|