-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (31 loc) · 1.04 KB
/
setup.py
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
28
29
30
31
32
33
34
35
import os
import setuptools
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path) as f:
long_description = f.read()
setuptools.setup(
name="matrix_factorization",
version="1.3",
author="Quang-Vinh Do",
author_email="[email protected]",
description="Library for matrix factorization for recommender systems using collaborative filtering",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Quang-Vinh/matrix-factorization",
download_url="https://github.com/Quang-Vinh/matrix-factorization/archive/v1.3.tar.gz",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.6",
install_requires=[
"numba>=0.49.1",
"numpy>=1.18.5",
"pandas>=1.0.4",
"scikit-learn>=0.23.1",
"scipy>=1.4.1",
],
)