Metadata-Version: 2.1
Name: BioSigProc
Version: 0.4.0
Summary: A package for processing and analyzing biomedical signals.
Home-page: https://github.com/gdeside/BioSigProc
Author: Guillaume Francois Deside
Author-email: guillaume.deside28@gmail.com
License: Apache Software License 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

![BioSigProc Logo](logo.png)
# BioSigProc

This repository contains the BioSigProc package, a Python library for processing and analyzing various biomedical signals, including EEG, ECG, and EMG. The package offers tools for signal processing, feature extraction, and visualization tailored for different signal types.

## Package Structure

```plaintext
BioSigProc/
│
├── biosigproc/
│   ├── __init__.py
│   ├── eeg/
│   │   ├── __init__.py
│   │   ├── eeg_processing.py
│   │   ├── eeg_feature_extraction.py
│   │   └── eeg_visualization.py
│   ├── ecg/
│   │   ├── __init__.py
│   │   ├── ecg_processing.py
│   │   ├── ecg_feature_extraction.py
│   │   └── ecg_visualization.py
│   ├── emg/
│   │   ├── __init__.py
│   │   ├── emg_processing.py
│   │   ├── emg_feature_extraction.py
│   │   └── emg_visualization.py
│   ├── ppg/
│   │   ├── __init__.py
│   │   ├── ppg_processing.py
│   │   ├── ppg_feature_extraction.py
│   │   └── ppg_visualization.py
│   ├── common_utils.py
│   ├── common_visualization.py  # Added
│
├── tests/
│   ├── test_eeg.py
│   ├── test_ecg.py
│   ├── test_emg.py
│   ├── test_ppg.py
│   └── test_common_utils.py
│
├── README.md
├── setup.py
└── .gitignore
```

## Usage

To use the BioSigProc package, follow the installation instructions in the [setup.py](./setup.py) file. Once installed, you can import specific modules and functions to process and analyze biomedical signals in your Python projects.

## Contributing

If you would like to contribute to the development of BioSigProc, please follow the guidelines in [CONTRIBUTING.md](CONTRIBUTING.md).

## License

This project is licensed under the [MIT License](LICENSE).
```

This version includes better formatting for the structure and adds more clarity to the README.md file. Adjustments have been made to improve the visual presentation of the directory tree.

