-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
amazingDD
committed
Jul 28, 2022
1 parent
96bd6b9
commit bb64e0c
Showing
20 changed files
with
14 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = 'v2.1.1' | ||
__version__ = 'v2.1.3' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
|
@@ -33,23 +33,27 @@ | |
} | ||
|
||
print('=============================================') | ||
print([package for package in find_packages() if package.startswith('daisy')]) | ||
# print([package for package in find_packages() if package.startswith('daisy')]) | ||
print(find_packages(where="daisy")) | ||
print('=============================================') | ||
|
||
setup( | ||
name='daisyRec', | ||
packages=[package for package in find_packages() if package.startswith('daisy')], | ||
# packages=find_packages(where="daisy"), | ||
# package_dir={"": "daisy"}, | ||
package_data={"": ["*.yaml"]}, | ||
# packages = find_packages(exclude=['tests*']), | ||
version='v2.1.1', # Ideally should be same as your GitHub release tag varsion | ||
version='v2.1.3', # Ideally should be same as your GitHub release tag varsion | ||
description=('An easy-to-use library for recommender systems.'), | ||
long_description=long_description, | ||
# long_description_content_type="text/markdown", | ||
author='Yu Di', | ||
author_email='[email protected]', | ||
url='https://github.com/AmazingDD/daisyRec', | ||
download_url='https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.1.1.tar.gz', | ||
download_url='https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.1.3.tar.gz', | ||
keywords=['ranking', 'recommendation'], | ||
include_package_data=True, | ||
# include_package_data=True, | ||
install_requires=install_requires, | ||
setup_requires=setup_requires, | ||
extras_require=extras_require, | ||
|