mimical 0.0.2__tar.gz → 0.0.3__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mimical
3
- Version: 0.0.2
4
- Summary: Intesity modelling of multiply-imaged objects.
3
+ Version: 0.0.3
4
+ Summary: Intesity modelling of multiply-imaged objects
5
5
  Author: Struan Stevenson
6
6
  Author-email: struan.stevenson@ed.ac.uk
7
7
  Description-Content-Type: text/markdown
@@ -2,4 +2,4 @@ from . import fitting
2
2
  from . import plotting
3
3
 
4
4
 
5
- from .fitting import BOGfit
5
+ from .fitting import mimical
@@ -1,3 +1,3 @@
1
- from .fitter import BOGfit
1
+ from .fitter import mimical
2
2
  from .prior_handler import priorHandler
3
3
 
@@ -15,14 +15,14 @@ from ..plotting import Plotter
15
15
  from ..utils import filter_set
16
16
 
17
17
  dir_path = os.getcwd()
18
- if not os.path.isdir(dir_path + "/bogout"):
19
- os.system('mkdir ' + dir_path + "/bogout")
20
- os.system('mkdir ' + dir_path + "/bogout/plots")
21
- os.system('mkdir ' + dir_path + "/bogout/posteriors")
18
+ if not os.path.isdir(dir_path + "/mimical"):
19
+ os.system('mkdir ' + dir_path + "/mimical")
20
+ os.system('mkdir ' + dir_path + "/mimical/plots")
21
+ os.system('mkdir ' + dir_path + "/mimical/posteriors")
22
22
 
23
23
 
24
24
 
25
- class BOGfit(object):
25
+ class mimical(object):
26
26
  """ Bayesian Observer of Galaxies - Fit.
27
27
  Fits multi-filter images of galaxies simultaeneously using Petrofit and Nautilus
28
28
  by specifying either an individual filter dependency for model parameters or
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mimical
3
- Version: 0.0.2
4
- Summary: Intesity modelling of multiply-imaged objects.
3
+ Version: 0.0.3
4
+ Summary: Intesity modelling of multiply-imaged objects
5
5
  Author: Struan Stevenson
6
6
  Author-email: struan.stevenson@ed.ac.uk
7
7
  Description-Content-Type: text/markdown
@@ -8,9 +8,9 @@ long_description = (this_directory / "README.md").read_text()
8
8
  setup(
9
9
  name='mimical',
10
10
 
11
- version='0.0.2',
11
+ version='0.0.3',
12
12
 
13
- description='Intesity modelling of multiply-imaged objects.',
13
+ description='Intesity modelling of multiply-imaged objects',
14
14
 
15
15
  long_description=long_description,
16
16
 
File without changes
File without changes