-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update setup.py update comments in EmbeddingLayer
- Loading branch information
1 parent
b8a8974
commit 3ca917b
Showing
3 changed files
with
33 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
from distutils.core import setup | ||
from setuptools import find_packages | ||
|
||
with open("README.md", "r") as f: | ||
with open("README.md", "r", encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='torch-rechub', | ||
version='0.0.1', | ||
version='0.0.2', | ||
description='A Lighting Pytorch Framework for Recommendation System, Easy-to-use and Easy-to-extend.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Mincai Lai', | ||
author_email='[email protected]', | ||
url='https://github.com/morningsky/Torch-RecHub', | ||
install_requires=['numpy>=1.21.5', 'torch>=1.7.0', 'pandas>=1.0.5', 'tqdm>=4.64.0', 'scikit_learn>=0.23.2'], | ||
author='Datawhale', | ||
author_email='[email protected]', | ||
url='https://github.com/datawhalechina/torch-rechub', | ||
install_requires=['numpy>=1.19.0', 'torch>=1.7.0', 'pandas>=1.0.5', 'tqdm>=4.64.0', 'scikit_learn>=0.23.2', 'annoy>=1.17.0'], | ||
packages=find_packages(), | ||
platforms=["all"], | ||
classifiers=[ | ||
|
@@ -22,7 +22,6 @@ | |
"Intended Audience :: Science/Research", | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Topic :: Scientific/Engineering', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters