|
''' |
|
author name : Rupesh Garsondiya |
|
github : @Rupeshgarsondiya |
|
Organization : L.J University |
|
''' |
|
from setuptools import setup, find_packages |
|
|
|
setup( |
|
name='project-1', |
|
version='1.0', |
|
description='Classify user behavior based on mobile data', |
|
packages = find_packages(), |
|
author='Rupesh-Garsondiya' , |
|
author_email='rupeshgarsondiya@gmail.com', |
|
url='https://github.com/Rupeshgarsondiya/Project-1.git', |
|
install_requires=['pandas', 'numpy', 'sklearn', 'matplotlib'], |
|
|
|
classifiers=['Programining Language :: python :: 3.12.3'] |
|
) |
|
|
|
|
|
|
|
|
|
|