Metadata-Version: 2.3
Name: sportify
Version: 0.8.0
Summary: Fetch sports data from CLI
Project-URL: Homepage, https://github.com/jacob-thompson/sportify
Project-URL: Bug Reports, https://github.com/jacob-thompson/sportify/issues
Author-email: "Jacob A. Thompson" <jacobalthompson@gmail.com>
Maintainer-email: "Jacob A. Thompson" <jacobalthompson@gmail.com>
License: MIT License
        
        Copyright (c) 2024 Jacob Alexander Thompson
        
        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.
Keywords: application,athletics,cli,data,espn,executable,sports
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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 :: Games/Entertainment
Requires-Python: >=3.7
Requires-Dist: python-dateutil
Requires-Dist: requests
Requires-Dist: simple-term-menu
Description-Content-Type: text/markdown

# Sportify

Sportify is a Python-based command-line interface (CLI) application that fetches and displays real-time sports data. Whether you're interested in scores, team stats, player information, or upcoming fixtures, Sportify provides a convenient way to access the latest sports updates from your terminal.

## Features (Work-in-progress)

- Fetch live scores for various sports.
- Get detailed stats on teams and players.
- View schedules for upcoming matches and events.
- Filter data by league, team, or player.
- User-friendly CLI commands with customizable options.

## Installation

To install Sportify, ensure you have Python 3.7 or higher installed on your machine.

### Pip

Recommended:
```bash
pipx install sportify
```

Otherwise:
```bash
pip install sportify
```

### Source

> [!IMPORTANT]
> Requires `build`
> ```
> pip install build
> ```

1. Clone the repository:
    ```bash
    git clone https://github.com/your-username/sportify.git
    cd sportify
    ```

2. Build the application:
    ```bash
    python3 -m build
    ```

3. Install the application:
    ```bash
    pipx install dist/*.tar.gz
    ```
    ```bash
    pip install dist/*.tar.gz
    ```

## Usage

```bash
sportify
```
