Metadata-Version: 2.1
Name: Uno-Game
Version: 1.0.2
Summary: A recreation of the Uno card game
Home-page: https://github.com/gaming32/uno
Author: Gaming32
Author-email: gaming32i64@gmail.com
License: License :: OSI Approved :: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: numpy

# Running
To run Uno, use the command `python -m uno`.
To run Uno Forge, use the command `python -m uno_forge`.
# Installing
To install use the command `python -m pip install uno`, (`python -m pip install uno-forge` for Uno Forge).
# Modding
## Starting
Create a mod in the `mods` folder with a compatable Python file extension and follow the following conventions:

File start:
``` python
import uno
import uno.main as unomain
import unoforge # Optional
```

File end:
``` python
if __name__ == '__main__': unomain.main()
```

