Metadata-Version: 2.1
Name: prediction_model-loan
Version: 1.0.0
Summary: Loan Prediction Model
Home-page: https://pypi.org/
Author: Gerry Eke
Author-email: gerryeke19@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Requires-Dist: numpy==1.24.3
Requires-Dist: pandas==1.5.3
Requires-Dist: joblib==1.2.0
Requires-Dist: scikit-learn==1.2.2
Requires-Dist: scipy==1.10.1
Requires-Dist: pytest==7.4.2
Requires-Dist: setuptools==67.8.0
Requires-Dist: wheel==0.38.4


# Example Package

hello-world
└── hello_world
    ├── __init__.py
    └── main.py

# Virtual Environments

```
conda create -n hellodemo python=3.10
conda activate hellodemo
pip install setuptools twine
python setup.py sdist
twine upload --repository-url https://test.pypi.org/legacy/ \
  dist/hello_world_gke-0.0.1.tar.gz

pip install -i https://test.pypi.org/simple/ hello-world-gke==0.0.1

# another example
python setup.py sdist
twine upload --repository-url https://upload.pypi.org/legacy/ \
  dist/prediction_model_gke-1.0.0.tar.gz
```
