-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 897 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
## edit below variables as per your requirements -
REPO_NAME = "Book Recommendation Clustering Pipeline"
AUTHOR_USER_NAME = "Raz Yousufi"
SRC_REPO = "book_recommender"
LIST_OF_REQUIREMENTS = []
setup(
name=SRC_REPO,
version="0.0.0",
author="Raz Yousufi",
author_email="razyousufi350@gmail.com",
description="ML based book recommendation system using clustering techniques",
keywords=["ML", "Machine Learning", "Book Recommendation", "Clustering"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Razyousuf/Book-Recommendation-Clustering-Pipeline",
packages=find_packages(),
license="MIT",
python_requires=">=3.10",
install_requires=LIST_OF_REQUIREMENTS
)