Metadata-Version: 2.1
Name: recommender-pkg
Version: 0.0.2
Summary: A small recommender package
Home-page: https://csc492-recommender-pkg.readthedocs.io/
Author: Mian Uddin
Author-email: mianuddin@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: numpy (==1.19.5)
Requires-Dist: pandas (==1.2.4)
Requires-Dist: seaborn (==0.11.1)
Requires-Dist: scikit-learn (==0.24.1)
Requires-Dist: tensorflow (==2.5.0rc1)
Requires-Dist: tqdm (==4.60.0)

# Recommender Package
Implementations of explicit and implicit recommenders with Numpy and Keras.

```sh
$ python3 -m pip install recommender-pkg
```

**Author:** Mian Uddin
**Advisor:** Dr. Paul Anderson
**Course(s):** CSC 491, CSC 492
**School:** Cal Poly, San Luis Obispo

## Build
Use the following command to build a wheel of this package.

```sh
$ python3 -m build
```

## Test
Use the following command to run unit tests.
```sh
$ python3 -m unittest tests
```

## Document
Use the following command to build the documentation.
```sh
$ sphinx-apidoc -f -o docs/source recommender_pkg/
$ (cd docs/ && make html)
```

## Release
Use the following command to distribute to PyPi.
```sh
$ python3 -m twine upload dist/*
```

