Metadata-Version: 2.1
Name: circumplex
Version: 0.1.2
Summary: A Python package for analyzing and visualizing circumplex data
Author-Email: Andrew Mitchell <andrew.mitchell.18@ucl.ac.uk>
License: GNU-GPLv3
Project-URL: Repository, https://github.com/MitchellAcoustics/circumplex
Project-URL: Documentation, https://circumplex.readthedocs.io/en/latest/
Requires-Python: >=3.11
Requires-Dist: numpy>=1.25.2
Requires-Dist: matplotlib>=3.8.1
Requires-Dist: scipy>=1.9.3
Requires-Dist: pandas[excel]>=2.1.0
Requires-Dist: pytest>=7.4.3; extra == "test"
Requires-Dist: flake8>=6.1.0; extra == "test"
Requires-Dist: jupyter>=1.0.0; extra == "docs"
Requires-Dist: mkdocs>=1.5.3; extra == "docs"
Requires-Dist: mkdocs-material>=9.4.8; extra == "docs"
Requires-Dist: mkdocstrings[python]>=0.23.0; extra == "docs"
Requires-Dist: mkdocs-jupyter>=0.24.6; extra == "docs"
Requires-Dist: markdown>=3.5.1; extra == "docs"
Requires-Dist: pymdown-extensions>=10.4; extra == "docs"
Requires-Dist: setuptools>=68.2.2; extra == "dev"
Provides-Extra: test
Provides-Extra: docs
Provides-Extra: dev
Description-Content-Type: text/markdown

<img src="https://raw.githubusercontent.com/MitchellAcoustics/circumplex/main/docs/img/logo-dark.png" width="300">

# circumplex

[![PyPI version](https://badge.fury.io/py/circumplex.svg)](https://badge.fury.io/py/circumplex)
[![Documentation Status](https://readthedocs.org/projects/circumplex/badge/?version=latest)](https://circumplex.readthedocs.io/en/latest/?badge=latest)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

_circumplex_ is a Python package for analyzing and visualizing circumplex data. It provides a set of tools for analyzing and visualizing circumplex data, following the Structural Summary Method. This project is a Python implementation based on the R [circumplex](https://circumplex.jmgirard.com/) package. Our goal is to provide a similar functionality and experience for Python users.

!!! note
    This project is still under development. We're working hard to make it as good as possible, but there may be bugs or missing features. If you find any issues, please let us know by submitting an issue on Github.

## Getting Started

To get started with _circumplex_, you'll need to install it first. You can do this by running the following command:

```bash
pip install circumplex
```

## Documentation

This documentation is designed to help you understand and use _circumplex_ effectively. It's divided into several sections:

- **Tutorials**: Practical examples showing how to use our project in real-world scenarios.
- **API Reference**: Detailed information about our project's API.
- **Contribute**: Information on how you can contribute to our project.

## Contributing

We welcome contributions from the community. If you're interested in contributing, please get in touch or submit an issue on Github.

## License

This project is licensed under the GNU GPLv3 License. For more information, please see the `license.md` file.

## Project layout

    mkdocs.yml     # The configuration file.
    docs/
        index.md   # The documentation homepage.
        about.md   # The about page.
        license.md # The license page.
        tutorials/ # Tutorial pages.
            Introduction to SSM Analysis.ipynb  
        ...        # Other markdown pages, images and other files.
    src/circumplex/
        circumplex.py 
