File size: 401 Bytes
e0a433a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from setuptools import setup, find_packages
setup(
name="Banglore_house_price_estimator",
version="1.0",
description="A machine learning project for house price prediction in Banglore",
author="Maaz uddin",
packages=find_packages(),
install_requires=[
"flask",
"pandas",
"numpy",
"scikit-learn",
"seaborn",
"matplotlib"
]
)
|