forked from shahriar-rahman/A-Comparative-Analysis-of-Amazon-Book-Ratings-using-Collaborative-Filtering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 624 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
setup(
name='amazon_ratings',
packages=find_packages(),
version='0.8.0',
description='Juxtaposing different Recommender Algorithms by utilizing the concept of Collaborative Filtering to analyze the Amazon Book Ratings. '
'the Audible website.',
author='Shahriar Rahman',
license='MIT License',
author_email='shahriarrahman1101@gmail.com',
install_requires=[
'pandas',
'missingNo',
'matplotlib',
'seaborn',
'scikit-learn',
'scikit-surprise',
'plotly',
'numpy',
],