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 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
@@ -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
@@ -82,9 +82,6 @@ class Plotter(object):
82
82
  fig.set_size_inches(images.shape[0],4, forward=True)
83
83
 
84
84
 
85
-
86
-
87
-
88
85
  def plot_median(self, images, wavs, convolved_models, samples, fitter_keys, prior_handler, filter_names):
89
86
 
90
87
  fig = plt.figure()
@@ -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,4 +1,4 @@
1
- README.md
1
+ README.rst
2
2
  setup.py
3
3
  mimical/__init__.py
4
4
  mimical.egg-info/PKG-INFO
@@ -1,28 +1,31 @@
1
1
  import setuptools
2
2
  from setuptools import setup
3
- from pathlib import Path
3
+ from os import path
4
4
 
5
- this_directory = Path(__file__).parent
6
- long_description = (this_directory / "README.md").read_text()
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.2',
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