-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (38 loc) · 1.32 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
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import pkg_resources
# The below line is used by GH Actions and should not be modified or moved above or below
version = "1.0.0"
readme_path = pkg_resources.resource_filename(__name__, "README.md")
with open(readme_path, encoding="utf8") as f:
long_description = f.read()
setup(
name="tfrec",
version=version,
description="A recommender library built on top of Tensorflow and \
Keras with implementations of SVD and SVD++ algorithms.",
packages=find_packages(),
url="https://github.com/Praful932/tf-rec",
author="Praful Mohanan",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
],
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
install_requires=[
"tensorflow>=2.6",
"numpy>=1.19",
"pandas>=1.3",
"scikit-learn>=1.1",
"requests>=2.0",
],
)