Metadata-Version: 2.2
Name: bigdance
Version: 0.1.0
Summary: March Madness Bracket Pool Simulator
Author-email: Taylor Firman <tefirman@gmail.com>
Maintainer-email: Taylor Firman <tefirman@gmail.com>
License: MIT License
        
        Copyright (c) 2024 Taylor Firman
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://taylorfirman.com
Project-URL: Repository, https://github.com/tefirman/bigdance.git
Project-URL: Bug Tracker, https://github.com/tefirman/bigdance/issues
Keywords: college basketball,warren nolan
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: lxml
Requires-Dist: urllib3
Requires-Dist: html5lib
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"

<table>
<tr>
  <td><img src="assets/DancingHex.png" width="400" alt="bigdance logo"></td>
  <td>
    <h1>bigdance</h1>
    A Python package for NCAA March Madness bracket simulation combining real-time ratings from Warren Nolan with customizable tournament simulations.
  </td>
</tr>
</table>

## Installation

```bash
pip install bigdance
```

## Quick Start

```python
from bigdance import Standings, simulate_bracket_pool

# Get current team ratings
standings = Standings()

# Simulate a bracket pool
results = simulate_bracket_pool(standings, num_entries=100)
print(results)
```

## Features

- Real-time team ratings and rankings from Warren Nolan
- Customizable bracket simulation
- Tournament pool analysis
- Integration with common bracket pool formats

## Development Installation

To install the package for development:

```bash
git clone https://github.com/tefirman/bigdance
cd bigdance
pip install -e .
```
