Metadata-Version: 2.1
Name: vtece4564-gamelib
Version: 0.0.16
Summary: A support library for the ECE 4564 Final Project
Home-page: https://code.vt.edu/ece4564/gamelib
Author: Carl Harris
Author-email: ceharris414@gmail.com
Project-URL: Bug Tracker, https://code.vt.edu/ece4564/gamelib/-/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

gamelib
=======

This project provides a Python library teams may use for
satisfying various aspects of the final project for ECE 4564.
It contains the following packages:

* [gameauth](src/main/python/gameauth/README.md) -- authentication and authorization support
* [gamecomm](src/main/python/gamecomm/README.md) -- client and server communication support
* [gamedb](src/main/python/gamedb/README.md) -- user and game database support

Installation
------------

To use this library in your project, install it into your virtual environment
using `pip`. **First, activate your virtual environment**. Then install as
follows.

```bash
pip install vtece4564-gamelib
```

This will install the library and all of its dependencies in your 
virtual environment.
