Skip to content

Commit

Permalink
update 2.0.3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
amazingDD committed Jul 20, 2022
1 parent 172c0ce commit c043611
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,25 @@
long_description = 'daisyRec is a Python toolkit developed for benchmarking top-N recommendation task.' \
'The name DAISY stands for multi-Dimension fAirly comparIson for recommender SYstem.'

here = path.abspath(path.dirname(__file__))
# here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'README.md'), encoding='utf-8') as f:
# long_description = f.read()
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')

install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
# with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
# all_reqs = f.read().split('\n')

# install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

install_requires = [
'torch>=1.1.0',
'numpy>=1.18.0',
'scikit-learn>=1.0.2',
'scipy>=1.5.2',
'pandas>=1.0.5',
'tqdm>=4.48.2',
'pyyaml>=5.1.0',
'colorlog==4.7.2',
'colorama==0.4.4',
]

setup_requires = []

Expand All @@ -25,14 +37,14 @@
name = 'daisyRec',
# packages = [package for package in find_packages() if package.startswith('daisy')],
packages = find_packages(exclude=['tests*']),
version = 'v2.0.2', # Ideally should be same as your GitHub release tag varsion
version = 'v2.0.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.0.2.tar.gz',
download_url = 'https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.0.3.tar.gz',
keywords = ['ranking', 'recommendation'],
include_package_data=True,
install_requires=install_requires,
Expand Down

0 comments on commit c043611

Please sign in to comment.