From 7e335a7f91680e371e500f1e6019daad17cc2b26 Mon Sep 17 00:00:00 2001 From: hushchyn-mikhail Date: Wed, 29 Jun 2022 07:55:03 +0300 Subject: [PATCH 1/4] pypi adapt --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcd4114..2b25f3e 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ # Welcome to Fulu +[![PyPI version](https://badge.fury.io/py/fulu.svg)](https://badge.fury.io/py/fulu) +[![Downloads](https://pepy.tech/badge/fulu)](https://pepy.tech/project/fulu) [![Tests](https://github.com/HSE-LAMBDA/fulu/actions/workflows/tests.yml/badge.svg)](https://github.com/HSE-LAMBDA/fulu/actions/workflows/tests.yml) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) `Fulu` is a python library of methods for astronomical light curves approximation based on machine learning. It was named after the variable star Zeta Cassiopeiae 590 light-years from the Sun and officially named [Fulu](https://simbad.cds.unistra.fr/simbad/sim-id?Ident=HR153). -![](images/cas.png) +![](https://raw.githubusercontent.com/HSE-LAMBDA/fulu/master/images/cas.png) _Cassiopeia constellation [[source]](https://en.wikipedia.org/wiki/File:Cassiopeia_constellation_map.svg)_ The library contains our implementation of light curve approximation method based on Gaussian Processes described in [1], and several other methods based on Normalizing Flows, Shallow and Bayesian Neural Networks considered in [2]. @@ -49,6 +52,6 @@ plotic.plot_one_graph_all(t=t, flux=flux, flux_err=flux_err, passbands=passbands t_approx=t_aug, flux_approx=flux_aug, flux_err_approx=flux_err_aug, passband_approx=passband_aug) ``` -![](images/ex.png) +![](https://raw.githubusercontent.com/HSE-LAMBDA/fulu/master/images/ex.png) Please find a plotting example in [`notebooks_examples/plotting.ipynb`](notebooks_examples/plotting.ipynb) From 62a7fe0026458c699d12cb38317c9df10044055f Mon Sep 17 00:00:00 2001 From: hushchyn-mikhail Date: Wed, 29 Jun 2022 08:10:36 +0300 Subject: [PATCH 2/4] authors update --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7e67f47..d5a74f9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,8 @@ [metadata] name = fulu version = 0.1.1 -author = Mikhail Hushchyn -author_email = mhushchyn@hse.ru +author = Mikhail Hushchyn, Konstantin Malanchev +author_email = mhushchyn@hse.ru, malanchev@sai.msu.ru description = Light curve approximation and augmentation long_description = file: README.md long_description_content_type = text/markdown From 11b8026e6fa668d38cc94a489dea6b5008b1738d Mon Sep 17 00:00:00 2001 From: hushchyn-mikhail Date: Wed, 29 Jun 2022 10:00:29 +0300 Subject: [PATCH 3/4] pip install --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2b25f3e..3617d19 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,11 @@ The library contains our implementation of light curve approximation method base ## Install +```sh +pip install fulu +``` +or + ```sh python3 -m pip install git+https://github.com/HSE-LAMBDA/fulu ``` From f4c5592b1b3c3770149b48b52e104d49921a6791 Mon Sep 17 00:00:00 2001 From: Konstantin Malanchev Date: Wed, 29 Jun 2022 09:18:24 +0200 Subject: [PATCH 4/4] Change Malanchev's email --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d5a74f9..da7d84e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = fulu version = 0.1.1 author = Mikhail Hushchyn, Konstantin Malanchev -author_email = mhushchyn@hse.ru, malanchev@sai.msu.ru +author_email = mhushchyn@hse.ru, malanchev@physics.msu.ru description = Light curve approximation and augmentation long_description = file: README.md long_description_content_type = text/markdown