Metadata-Version: 2.4
Name: benford-midi
Version: 1.0.0
Summary: A package for analyzing MIDI files for compliance with Benford's Law
Home-page: https://github.com/ajprice16/benford-midi-analysis
Author: Alex Price
Author-email: Alex Price <ajprice@mail.wlu.edu>
License: MIT
Project-URL: Homepage, https://github.com/ajprice16/benford-midi-analysis
Project-URL: Repository, https://github.com/ajprice16/benford-midi-analysis
Project-URL: Issues, https://github.com/ajprice16/benford-midi-analysis/issues
Keywords: benford,midi,analysis,statistics,music
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Multimedia :: Sound/Audio :: MIDI
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: matplotlib>=3.5.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: mido>=1.2.0
Requires-Dist: tqdm>=4.60.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: build>=0.7.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Benford MIDI Analysis

This project provides a Python package for analyzing MIDI files in accordance with Benford's Law. It includes functionalities for statistical analysis, compliance testing, and command-line interface usage.

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Examples](#examples)
- [Contributing](#contributing)
- [License](#license)

## Installation

To install the package, clone the repository and install the required dependencies:

```bash
git clone https://github.com/ajprice16/benford-midi-analysis.git
cd benford-midi-analysis
pip install -r requirements.txt
```

Alternatively, you can install the package directly using pip:

```bash
pip install .
```

## Usage

You can use the package from the command line or import it into your Python scripts. The main functionalities include:

- Analyzing MIDI files for Benford's Law compliance.
- Comparing compliance between two sets of MIDI files.

For command-line usage, you can run:

```bash
python -m benford_midi.cli
```

## Examples

Check the `examples` directory for usage examples:

- `basic_usage.py`: A simple example demonstrating basic functionality.
- `comparison_example.py`: An example showcasing how to compare two sets of MIDI files.

## Contributing

Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
