barclays_challenge_event_20.../setup.py

16 lines
417 B
Python
Raw Normal View History

2024-04-07 13:41:14 +00:00
from setuptools import setup, find_packages
setup(
name="credit_risk_imputation",
version="1.0.0",
description="""
Credit Risk Assessment Dataset Cleaning using KNN Imputation""",
author="r0r-5chach",
author_email="r0r-5chach.xyz@proton.me",
packages=find_packages(),
install_requires=[
"pandas",
"scikit-learn"
]
)