ler 0.4.1__tar.gz → 0.4.2__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.
Potentially problematic release.
This version of ler might be problematic. Click here for more details.
- {ler-0.4.1 → ler-0.4.2}/PKG-INFO +2 -2
- {ler-0.4.1 → ler-0.4.2}/ler/__init__.py +1 -1
- {ler-0.4.1 → ler-0.4.2}/ler/gw_source_population/cbc_source_parameter_distribution.py +4 -4
- {ler-0.4.1 → ler-0.4.2}/ler/gw_source_population/cbc_source_redshift_distribution.py +1 -1
- {ler-0.4.1 → ler-0.4.2}/ler/image_properties/image_properties.py +3 -1
- {ler-0.4.1 → ler-0.4.2}/ler/lens_galaxy_population/lens_galaxy_parameter_distribution.py +5 -5
- {ler-0.4.1 → ler-0.4.2}/ler/rates/gwrates.py +3 -3
- {ler-0.4.1 → ler-0.4.2}/ler/rates/ler.py +41 -7
- {ler-0.4.1 → ler-0.4.2}/ler/utils/utils.py +61 -0
- {ler-0.4.1 → ler-0.4.2}/ler.egg-info/PKG-INFO +2 -2
- {ler-0.4.1 → ler-0.4.2}/setup.py +2 -2
- {ler-0.4.1 → ler-0.4.2}/LICENSE +0 -0
- {ler-0.4.1 → ler-0.4.2}/README.md +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/gw_source_population/__init__.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/gw_source_population/jit_functions.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/image_properties/__init__.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/image_properties/multiprocessing_routine.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/lens_galaxy_population/__init__.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/lens_galaxy_population/jit_functions.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/lens_galaxy_population/mp.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/lens_galaxy_population/optical_depth.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/rates/__init__.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/utils/__init__.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler/utils/plots.py +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler.egg-info/SOURCES.txt +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler.egg-info/dependency_links.txt +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler.egg-info/requires.txt +0 -0
- {ler-0.4.1 → ler-0.4.2}/ler.egg-info/top_level.txt +0 -0
- {ler-0.4.1 → ler-0.4.2}/setup.cfg +0 -0
{ler-0.4.1 → ler-0.4.2}/PKG-INFO
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ler
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.4.2
|
|
4
|
+
Summary: LVK (LIGO-Virgo-KAGRA collaboration) Event (compact-binary mergers) Rate calculator and simulator
|
|
5
5
|
Home-page: https://github.com/hemantaph/ler
|
|
6
6
|
Author: Hemantakumar
|
|
7
7
|
Author-email: hemantaphurailatpam@gmail.com
|
|
@@ -46,7 +46,7 @@ class CBCSourceParameterDistribution(CBCSourceRedshiftDistribution):
|
|
|
46
46
|
Dictionary of prior sampler functions and its input parameters.
|
|
47
47
|
Check for available priors and corresponding input parameters by running,
|
|
48
48
|
>>> from ler.gw_source_population import CBCSourceParameterDistribution
|
|
49
|
-
>>> cbc =
|
|
49
|
+
>>> cbc = CBCSourceParameterDistribution()
|
|
50
50
|
>>> cbc.available_gw_prior_list_and_its_params()
|
|
51
51
|
# To check the current chosen priors and its parameters, run,
|
|
52
52
|
>>> print("default priors=",cbc.gw_param_samplers)
|
|
@@ -77,7 +77,7 @@ class CBCSourceParameterDistribution(CBCSourceRedshiftDistribution):
|
|
|
77
77
|
|
|
78
78
|
Instance Attributes
|
|
79
79
|
----------
|
|
80
|
-
|
|
80
|
+
CBCSourceParameterDistribution has the following instance attributes:\n
|
|
81
81
|
+-------------------------------------+----------------------------------+
|
|
82
82
|
| Atrributes | Type |
|
|
83
83
|
+=====================================+==================================+
|
|
@@ -114,7 +114,7 @@ class CBCSourceParameterDistribution(CBCSourceRedshiftDistribution):
|
|
|
114
114
|
|
|
115
115
|
Instance Methods
|
|
116
116
|
----------
|
|
117
|
-
|
|
117
|
+
CBCSourceParameterDistribution has the following instance methods:\n
|
|
118
118
|
+-------------------------------------+----------------------------------+
|
|
119
119
|
| Methods | Type |
|
|
120
120
|
+=====================================+==================================+
|
|
@@ -1136,7 +1136,7 @@ class CBCSourceParameterDistribution(CBCSourceRedshiftDistribution):
|
|
|
1136
1136
|
Examples
|
|
1137
1137
|
----------
|
|
1138
1138
|
>>> from ler.gw_source_population import CBCSourceParameterDistribution
|
|
1139
|
-
>>> cbc =
|
|
1139
|
+
>>> cbc = CBCSourceParameterDistribution()
|
|
1140
1140
|
>>> priors = cbc.available_gw_prior_list_and_its_params
|
|
1141
1141
|
>>> priors.keys() # type of priors
|
|
1142
1142
|
dict_keys(['merger_rate_density', 'source_frame_masses', 'spin', 'geocent_time', 'ra', 'phase', 'psi', 'theta_jn'])
|
|
@@ -25,7 +25,7 @@ from .jit_functions import merger_rate_density_bbh_popI_II_oguri2018, star_forma
|
|
|
25
25
|
|
|
26
26
|
class CBCSourceRedshiftDistribution(object):
|
|
27
27
|
"""Class to generate a population of source galaxies.
|
|
28
|
-
This class is inherited by :class:`~ler.ler.
|
|
28
|
+
This class is inherited by :class:`~ler.ler.CBCSourceParameterDistribution` and :class:`~ler.ler.LensGalaxyParameterDistribution` class.
|
|
29
29
|
|
|
30
30
|
Parameters
|
|
31
31
|
----------
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
"""
|
|
3
3
|
This module contains the LensGalaxyPopulation class, which is used to sample lens galaxy parameters, source parameters conditioned on the source being strongly lensed, image properties, and lensed SNRs. \n
|
|
4
|
-
The class inherits from the
|
|
4
|
+
The class inherits from the CBCSourceParameterDistribution class, which is used to sample source parameters. \n
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import warnings
|
|
@@ -341,6 +341,8 @@ class ImageProperties():
|
|
|
341
341
|
####################################
|
|
342
342
|
lens_parameters.update(image_parameters)
|
|
343
343
|
lens_parameters["n_images"] = n_images
|
|
344
|
+
lens_parameters["x_source"] = x_source
|
|
345
|
+
lens_parameters["y_source"] = y_source
|
|
344
346
|
|
|
345
347
|
return lens_parameters
|
|
346
348
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"""
|
|
3
3
|
This module contains the LensGalaxyPopulation class, which is used to sample lens galaxy parameters, source parameters conditioned on the source being strongly lensed. \n
|
|
4
4
|
The class inherits from the ImageProperties class, which is used calculate image properties (magnification, timedelays, source position, image position, morse phase). \n
|
|
5
|
-
Either the class takes in initialized
|
|
5
|
+
Either the class takes in initialized CBCSourceParameterDistribution class as input or inherits the CBCSourceParameterDistribution class with default params (if no input) \n
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
8
|
import warnings
|
|
@@ -181,8 +181,8 @@ class LensGalaxyParameterDistribution(CBCSourceParameterDistribution, ImagePrope
|
|
|
181
181
|
|
|
182
182
|
# Attributes
|
|
183
183
|
cbc_pop = None
|
|
184
|
-
""":class:`~
|
|
185
|
-
This is an already initialized class that contains a function (
|
|
184
|
+
""":class:`~CBCSourceParameterDistribution` class\n
|
|
185
|
+
This is an already initialized class that contains a function (CBCSourceParameterDistribution.sample_gw_parameters) that actually samples the source parameters.
|
|
186
186
|
"""
|
|
187
187
|
|
|
188
188
|
z_min = None
|
|
@@ -313,7 +313,7 @@ class LensGalaxyParameterDistribution(CBCSourceParameterDistribution, ImagePrope
|
|
|
313
313
|
dictionary of parameters to initialize the parent classes
|
|
314
314
|
"""
|
|
315
315
|
|
|
316
|
-
# initialization of
|
|
316
|
+
# initialization of CBCSourceParameterDistribution class
|
|
317
317
|
# it also initializes the CBCSourceRedshiftDistribution class
|
|
318
318
|
# list of relevant initialized instances,
|
|
319
319
|
# 1. self.sample_source_redshift
|
|
@@ -639,7 +639,7 @@ class LensGalaxyParameterDistribution(CBCSourceParameterDistribution, ImagePrope
|
|
|
639
639
|
def zs_function(zs_sl):
|
|
640
640
|
# get zs
|
|
641
641
|
# self.sample_source_redshifts from CBCSourceRedshiftDistribution class
|
|
642
|
-
zs = self.sample_zs(size) # this function is from
|
|
642
|
+
zs = self.sample_zs(size) # this function is from CBCSourceParameterDistribution class
|
|
643
643
|
# put strong lensing condition with optical depth
|
|
644
644
|
tau = self.strong_lensing_optical_depth(zs)
|
|
645
645
|
tau_max = self.strong_lensing_optical_depth(np.array([z_max]))[0] # tau increases with z
|
|
@@ -84,7 +84,7 @@ class GWRATES(CBCSourceParameterDistribution):
|
|
|
84
84
|
|
|
85
85
|
Instance Attributes
|
|
86
86
|
----------
|
|
87
|
-
LeR class has the following attributes
|
|
87
|
+
LeR class has the following attributes:\n
|
|
88
88
|
+-------------------------------------+----------------------------------+
|
|
89
89
|
| Atrributes | Type |
|
|
90
90
|
+=====================================+==================================+
|
|
@@ -121,7 +121,7 @@ class GWRATES(CBCSourceParameterDistribution):
|
|
|
121
121
|
|
|
122
122
|
Instance Methods
|
|
123
123
|
----------
|
|
124
|
-
LeR class has the following methods
|
|
124
|
+
LeR class has the following methods:\n
|
|
125
125
|
+-------------------------------------+----------------------------------+
|
|
126
126
|
| Methods | Description |
|
|
127
127
|
+=====================================+==================================+
|
|
@@ -506,7 +506,7 @@ class GWRATES(CBCSourceParameterDistribution):
|
|
|
506
506
|
dictionary of parameters to initialize the parent classes
|
|
507
507
|
"""
|
|
508
508
|
|
|
509
|
-
# initialization of
|
|
509
|
+
# initialization of CBCSourceParameterDistribution class
|
|
510
510
|
# it also initializes the CBCSourceRedshiftDistribution class
|
|
511
511
|
input_params = dict(
|
|
512
512
|
z_min=self.z_min,
|
|
@@ -76,6 +76,23 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
76
76
|
interpolator_directory : `str`
|
|
77
77
|
directory to store the interpolators.
|
|
78
78
|
default interpolator_directory = './interpolator_pickle'. This is used for storing the various interpolators related to `ler` and `gwsnr` package.
|
|
79
|
+
create_new_interpolator : `bool` or `dict`
|
|
80
|
+
default create_new_interpolator = False.
|
|
81
|
+
if True, the all interpolators (including `gwsnr`'s)will be created again.
|
|
82
|
+
if False, the interpolators will be loaded from the interpolator_directory if they exist.
|
|
83
|
+
if dict, you can specify which interpolators to create new. Complete example (change any of them to True), create_new_interpolator = create_new_interpolator = dict(
|
|
84
|
+
redshift_distribution=dict(create_new=False, resolution=1000),
|
|
85
|
+
z_to_luminosity_distance=dict(create_new=False, resolution=1000),
|
|
86
|
+
velocity_dispersion=dict(create_new=False, resolution=1000),
|
|
87
|
+
axis_ratio=dict(create_new=False, resolution=1000),
|
|
88
|
+
optical_depth=dict(create_new=False, resolution=200),
|
|
89
|
+
z_to_Dc=dict(create_new=False, resolution=1000),
|
|
90
|
+
Dc_to_z=dict(create_new=False, resolution=1000),
|
|
91
|
+
angular_diameter_distance=dict(create_new=False, resolution=1000),
|
|
92
|
+
differential_comoving_volume=dict(create_new=False, resolution=1000),
|
|
93
|
+
Dl_to_z=dict(create_new=False, resolution=1000),
|
|
94
|
+
gwsnr=False,
|
|
95
|
+
)
|
|
79
96
|
ler_directory : `str`
|
|
80
97
|
directory to store the parameters.
|
|
81
98
|
default ler_directory = './ler_data'. This is used for storing the parameters of the simulated events.
|
|
@@ -98,7 +115,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
98
115
|
|
|
99
116
|
Instance Attributes
|
|
100
117
|
----------
|
|
101
|
-
LeR class has the following attributes
|
|
118
|
+
LeR class has the following attributes: \n
|
|
102
119
|
+-------------------------------------+----------------------------------+
|
|
103
120
|
| Atrributes | Type |
|
|
104
121
|
+=====================================+==================================+
|
|
@@ -141,7 +158,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
141
158
|
|
|
142
159
|
Instance Methods
|
|
143
160
|
----------
|
|
144
|
-
LeR class has the following methods
|
|
161
|
+
LeR class has the following methods:\n
|
|
145
162
|
+-------------------------------------+----------------------------------+
|
|
146
163
|
| Methods | Description |
|
|
147
164
|
+=====================================+==================================+
|
|
@@ -194,7 +211,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
194
211
|
| | ratio between lensed and |
|
|
195
212
|
| | unlensed events. |
|
|
196
213
|
+-------------------------------------+----------------------------------+
|
|
197
|
-
|:meth:`~
|
|
214
|
+
|:meth:`~rate_comparison_with_rate_calculation` |
|
|
198
215
|
+-------------------------------------+----------------------------------+
|
|
199
216
|
| | Function to calculate rates for |
|
|
200
217
|
| | unleesed and lensed events and |
|
|
@@ -437,6 +454,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
437
454
|
list_of_detectors=None,
|
|
438
455
|
json_file_names=None,
|
|
439
456
|
interpolator_directory="./interpolator_pickle",
|
|
457
|
+
create_new_interpolator=False,
|
|
440
458
|
ler_directory="./ler_data",
|
|
441
459
|
verbose=True,
|
|
442
460
|
**kwargs,
|
|
@@ -453,6 +471,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
453
471
|
if json_file_names:
|
|
454
472
|
self.json_file_names.update(json_file_names)
|
|
455
473
|
self.interpolator_directory = interpolator_directory
|
|
474
|
+
kwargs["create_new_interpolator"] = create_new_interpolator
|
|
456
475
|
self.ler_directory = ler_directory
|
|
457
476
|
# create directory if not exists
|
|
458
477
|
if not os.path.exists(ler_directory):
|
|
@@ -820,6 +839,21 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
820
839
|
if key in input_params:
|
|
821
840
|
input_params[key] = value
|
|
822
841
|
self.snr_calculator_dict = input_params
|
|
842
|
+
|
|
843
|
+
# dealing with create_new_interpolator param
|
|
844
|
+
if isinstance(input_params["create_new_interpolator"], bool):
|
|
845
|
+
pass
|
|
846
|
+
elif isinstance(input_params["create_new_interpolator"], dict):
|
|
847
|
+
# check input_params["gwsnr"] exists
|
|
848
|
+
if "gwsnr" in input_params["create_new_interpolator"]:
|
|
849
|
+
if isinstance(input_params["create_new_interpolator"]["gwsnr"], bool):
|
|
850
|
+
input_params["create_new_interpolator"] = input_params["create_new_interpolator"]["gwsnr"]
|
|
851
|
+
else:
|
|
852
|
+
raise ValueError("create_new_interpolator['gwsnr'] should be a boolean.")
|
|
853
|
+
else:
|
|
854
|
+
raise ValueError("create_new_interpolator should be a boolean or a dictionary with 'gwsnr' key.")
|
|
855
|
+
|
|
856
|
+
# initialization of GWSNR class
|
|
823
857
|
gwsnr = GWSNR(
|
|
824
858
|
npool=input_params["npool"],
|
|
825
859
|
mtot_min=input_params["mtot_min"],
|
|
@@ -835,7 +869,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
835
869
|
psds=input_params["psds"],
|
|
836
870
|
ifos=input_params["ifos"],
|
|
837
871
|
interpolator_dir=input_params["interpolator_dir"],
|
|
838
|
-
|
|
872
|
+
create_new_interpolator=input_params["create_new_interpolator"],
|
|
839
873
|
gwsnr_verbose=input_params["gwsnr_verbose"],
|
|
840
874
|
multiprocessing_verbose=input_params["multiprocessing_verbose"],
|
|
841
875
|
mtot_cut=input_params["mtot_cut"],
|
|
@@ -910,7 +944,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
910
944
|
resume = False (default) or True.
|
|
911
945
|
if True, the function will resume from the last batch.
|
|
912
946
|
save_batch : `bool`
|
|
913
|
-
if True, the function will save the parameters in batches. if False, the function will save all the parameters at the end of sampling. save_batch=False is faster.
|
|
947
|
+
if True, the function will save the parameters in batches. if False (default), the function will save all the parameters at the end of sampling. save_batch=False is faster.
|
|
914
948
|
output_jsonfile : `str`
|
|
915
949
|
json file name for storing the parameters.
|
|
916
950
|
default output_jsonfile = 'unlensed_params.json'. Note that this file will be stored in the self.ler_directory.
|
|
@@ -1670,7 +1704,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
1670
1704
|
|
|
1671
1705
|
return snr_hit
|
|
1672
1706
|
|
|
1673
|
-
def
|
|
1707
|
+
def rate_comparison_with_rate_calculation(
|
|
1674
1708
|
self,
|
|
1675
1709
|
unlensed_param=None,
|
|
1676
1710
|
snr_threshold_unlensed=8.0,
|
|
@@ -1733,7 +1767,7 @@ class LeR(LensGalaxyParameterDistribution):
|
|
|
1733
1767
|
>>> ler = LeR()
|
|
1734
1768
|
>>> ler.unlensed_cbc_statistics();
|
|
1735
1769
|
>>> ler.lensed_cbc_statistics();
|
|
1736
|
-
>>> rate_ratio, unlensed_param, lensed_param = ler.
|
|
1770
|
+
>>> rate_ratio, unlensed_param, lensed_param = ler.rate_comparison_with_rate_calculation()
|
|
1737
1771
|
"""
|
|
1738
1772
|
|
|
1739
1773
|
# call json_file_ler_param and add the results
|
|
@@ -5,6 +5,7 @@ This module contains helper routines for other modules in the ler package.
|
|
|
5
5
|
|
|
6
6
|
import os
|
|
7
7
|
import pickle
|
|
8
|
+
import h5py
|
|
8
9
|
import numpy as np
|
|
9
10
|
import json
|
|
10
11
|
from scipy.interpolate import interp1d
|
|
@@ -52,6 +53,66 @@ class NumpyEncoder(json.JSONEncoder):
|
|
|
52
53
|
return obj.tolist()
|
|
53
54
|
return json.JSONEncoder.default(self, obj)
|
|
54
55
|
|
|
56
|
+
def load_pickle(file_name):
|
|
57
|
+
"""Load a pickle file.
|
|
58
|
+
|
|
59
|
+
Parameters
|
|
60
|
+
----------
|
|
61
|
+
file_name : `str`
|
|
62
|
+
pickle file name for storing the parameters.
|
|
63
|
+
|
|
64
|
+
Returns
|
|
65
|
+
----------
|
|
66
|
+
param : `dict`
|
|
67
|
+
"""
|
|
68
|
+
with open(file_name, "rb") as handle:
|
|
69
|
+
param = pickle.load(handle)
|
|
70
|
+
|
|
71
|
+
return param
|
|
72
|
+
|
|
73
|
+
def save_pickle(file_name, param):
|
|
74
|
+
"""Save a dictionary as a pickle file.
|
|
75
|
+
|
|
76
|
+
Parameters
|
|
77
|
+
----------
|
|
78
|
+
file_name : `str`
|
|
79
|
+
pickle file name for storing the parameters.
|
|
80
|
+
param : `dict`
|
|
81
|
+
dictionary to be saved as a pickle file.
|
|
82
|
+
"""
|
|
83
|
+
with open(file_name, "wb") as handle:
|
|
84
|
+
pickle.dump(param, handle, protocol=pickle.HIGHEST_PROTOCOL)
|
|
85
|
+
|
|
86
|
+
# hdf5
|
|
87
|
+
def load_hdf5(file_name):
|
|
88
|
+
"""Load a hdf5 file.
|
|
89
|
+
|
|
90
|
+
Parameters
|
|
91
|
+
----------
|
|
92
|
+
file_name : `str`
|
|
93
|
+
hdf5 file name for storing the parameters.
|
|
94
|
+
|
|
95
|
+
Returns
|
|
96
|
+
----------
|
|
97
|
+
param : `dict`
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
return h5py.File(file_name, 'r')
|
|
101
|
+
|
|
102
|
+
def save_hdf5(file_name, param):
|
|
103
|
+
"""Save a dictionary as a hdf5 file.
|
|
104
|
+
|
|
105
|
+
Parameters
|
|
106
|
+
----------
|
|
107
|
+
file_name : `str`
|
|
108
|
+
hdf5 file name for storing the parameters.
|
|
109
|
+
param : `dict`
|
|
110
|
+
dictionary to be saved as a hdf5 file.
|
|
111
|
+
"""
|
|
112
|
+
with h5py.File(file_name, 'w') as f:
|
|
113
|
+
for key, value in param.items():
|
|
114
|
+
f.create_dataset(key, data=value)
|
|
115
|
+
|
|
55
116
|
def load_json(file_name):
|
|
56
117
|
"""Load a json file.
|
|
57
118
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ler
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.4.2
|
|
4
|
+
Summary: LVK (LIGO-Virgo-KAGRA collaboration) Event (compact-binary mergers) Rate calculator and simulator
|
|
5
5
|
Home-page: https://github.com/hemantaph/ler
|
|
6
6
|
Author: Hemantakumar
|
|
7
7
|
Author-email: hemantaphurailatpam@gmail.com
|
{ler-0.4.1 → ler-0.4.2}/setup.py
RENAMED
|
@@ -13,8 +13,8 @@ if python_version < (3, 10):
|
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
15
|
name="ler",
|
|
16
|
-
version="0.4.
|
|
17
|
-
description="
|
|
16
|
+
version="0.4.2",
|
|
17
|
+
description="LVK (LIGO-Virgo-KAGRA collaboration) Event (compact-binary mergers) Rate calculator and simulator",
|
|
18
18
|
long_description=long_description,
|
|
19
19
|
long_description_content_type='text/markdown',
|
|
20
20
|
author="Hemantakumar",
|
{ler-0.4.1 → ler-0.4.2}/LICENSE
RENAMED
|
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
|