Metadata-Version: 2.1
Name: scpup
Version: 0.13.28
Summary: AramEau python packages
Project-URL: Homepage, https://github.com/Aram-Eau/eau-py
Project-URL: Download Page, https://scpup-game.web.app
Author-email: Ivan Aram Gonzalez Su <ivan.ags.95@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pygame>=2.0.1
Description-Content-Type: text/markdown

# AramEau - eau-py 

## SCPUP Description

Library for Super Crystal Pokebros Ultimate Party game. This library contains the SCPUP ABC and related python classes

This library is not meant to be used in other projects other than AramEau's SCPUP and maybe other games made by AramEau.
So, if for any reason you decide to use this library, it is at your own risk. Sorry but the aim of this library is to
acomplish a personal goal.

## Install

```bash
python -m pip install -U scpup
```

## Usage

Any exported member of any module within this package can be accessed from the root scope, for example:

```python
from scpup import EauSprite
class SomeSprite(EauSprite): ...
# or
import scpup
class SomeSprite(scpup.EauSprite): ...
```
