19 lines
541 B
Python
19 lines
541 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="barclays_credit_classifier",
|
|
version="1.0.0",
|
|
description="Predicts whether someone will default on their loan. Uses the Credit Risk Dataset from Kaggle",
|
|
author="r0r-5chach",
|
|
author_email="r0r-5chach.xyz@proton.me",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"numpy",
|
|
"scipy",
|
|
"matplotlib",
|
|
"pandas",
|
|
"scikit-learn",
|
|
"seaborn"
|
|
]
|
|
)
|