barclays_challenge_event_20.../setup.py

19 lines
541 B
Python
Raw Normal View History

2024-03-29 16:05:46 +00:00
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"
]
)