Metadata-Version: 2.1
Name: byma
Version: 0.1.1
Summary: A Numerical Mathematics Packages with an easier and clean user interface.
Author: @b64-Lorenzo (Lorenzo Zambelli)
Author-email: Lorenzo Zambelli <bytemath@lorenzozambelli.it>
Project-URL: Homepage, https://gitlab.com/ByteMath/python/byma
Project-URL: documentation, https://bytemath.gitlab.io/python/ByMa/index.html
Project-URL: source, https://gitlab.com/ByteMath/python/ByMa
Project-URL: download, https://pypi.org/project/byma/#files
Project-URL: tracker, https://gitlab.com/ByteMath/python/ByMa/-/issues
Keywords: python,scientific,numerical,bifurcation
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md

# ByMa
![PyPI - Version](https://img.shields.io/pypi/v/byma?style=plastic&label=ByMa&labelColor=green&color=blue&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)
[![PyPI Downloads](https://img.shields.io/pypi/dm/label=PyPI%20downloads)](
https://pypi.org/project/byma/)
[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/label=Conda%20downloads)](https://anaconda.org/conda-forge/byma)
![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/numpy/1.1.1?style=plastic&logo=numpy&label=NumPy&labelColor=blue&link=https%3A%2F%2Fnumpy.org%2F)
![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/scipy/1.0.0?style=plastic&logo=scipy&label=SciPy&labelColor=light%20blue&link=https%3A%2F%2Fscipy.org%2F)
![GitLab Last Commit](https://img.shields.io/gitlab/last-commit/ByteMath%2Fpython%2FByMa?gitlab_url=https%3A%2F%2Fgitlab.com%2FByteMath%2Fpython%2FByMa&style=plastic)
![Static Badge](https://img.shields.io/badge/Docs-Read?style=plastic&label=Read&color=purple&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)



ByMa is a Python package designed to facilitate numerical mathematics tasks by implementing a range of standard methods, from iterative techniques to bifurcation methods. Noted for its simplicity, clarity, and efficiency, ByMa aims to enhance the learning experience for newcomers to numerical mathematics while streamlining the implementation and utilization of popular scientific libraries such as NumPy, SciPy, and Matplotlib.


## Installation

ByMa is best installed in a [virtual environment](https://docs.python.org/3/library/venv.html).
We state the most common steps for creating and using a virtual environment here.
Refer to the documentation for more details.

To create a virtual environment run
```
python3 -m venv /path/to/new/virtual/environment
```

and to activate the virtual environment, run
```
source /path/to/new/virtual/environment/bin/activate
```

After this, we can install ByMa from the pip package by using
```
pip install byma
```

In case the dependencies are not installed, you can run 
```
pip install -e .
```

## Packages

ByMa consists of several subpackages, each serving a distinct purpose:

- **nuby**: Numerical Bifurcation Analysis Tools
- **iteral**: Tools for iterative algorithms
- **pyplot**: Tools for plotting functions
- **interface**: Interface functionalities

## Authors

* Lorenzo Zambelli [website](https://lorenzozambelli.it)
