Metadata-Version: 2.4
Name: seispack
Version: 0.3.1
Summary: Python Tools for asteroseismic data analysis
Author-email: Jérôme Ballot <jerome.ballot@irap.omp.eu>
License-Expression: CECILL-2.1
Project-URL: Homepage, https://gitlab.in2p3.fr/astero/seispack/
Project-URL: Issues, https://gitlab.in2p3.fr/astero/seispack/issues
Keywords: stellar physics,asteroseismology,data analysis
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.23
Requires-Dist: scipy>=1.15
Requires-Dist: matplotlib>=3.5
Requires-Dist: astropy
Requires-Dist: astroquery>=0.4.9
Requires-Dist: tqdm
Requires-Dist: importlib_resources
Dynamic: license-file

# seispack: a python package for asteroseismic data analysis

## Content

[[_TOC_]] 

[//]: # (The line above generates automatically the Table of Content on gitlab.)

## Purpose

This package gather various tools useful for seismic data analysis. It is especially used by the `abim` code.

## Prerequisites

In order to install `seispack`, you will need: `numpy`, `scipy`, `matplotlib`

## Installation

For safety, we recommend to use a dedicated python environment (for example by using `pyenv` or `conda`) to avoid conflicts. Be sure that `pip` is installed, and run the following procedure:

### Installation with pip

```bash
pip install seispack
```

### Installation from gitlab of the last version

The package is available on a git repository: [gitlab.in2p3.fr/astero/seispack](https://gitlab.in2p3.fr/astero/seispack). You can download it from there or clone it:
```bash
# clone with ssh:
git clone git@gitlab.in2p3.fr:astero/seispack.git  # requires a ssh key!
# or clone with https:
git clone https://gitlab.in2p3.fr/astero/seispack.git # using login/password
```
then you can install it with pip
```bash
cd seispack
python -m pip install -e .
```
The option `-e` (for "editable") can be removed. It just links the package modules to the source. Since this code evolved quickly, each modification is immediately available without re-installation.


## Use

### `seispack` basic functions

Under construction

### Examples

Under construction

## Authors

* **Jérôme Ballot** - Maintainer - (IRAP - CNRS, Université de Toulouse)

