-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (47 loc) · 2.07 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from __future__ import absolute_import
from __future__ import print_function
from __future__ import division
import os
from setuptools import setup, find_packages
install_requires = ['numpy>=1.17.2', 'torch>=1.6.0', 'scipy>=1.3.1', 'pandas>=1.0.5', 'tqdm>=4.48.2',
'scikit_learn>=0.23.2', 'pyyaml>=5.1.0', 'matplotlib>=3.1.3']
setup_requires = []
extras_require = {
'hyperopt': ['hyperopt>=0.2.4']
}
classifiers = ["License :: OSI Approved :: MIT License"]
long_description = 'RecBole is developed based on Python and PyTorch for ' \
'reproducing and developing recommendation algorithms in ' \
'a unified, comprehensive and efficient framework for ' \
'research purpose. In the first version, Our library ' \
'includes 53 recommendation algorithms, covering four ' \
'major categories: General Recommendation, Sequential ' \
'Recommendation, Context-aware Recommendation and ' \
'Knowledge-based Recommendation. View RecBole homepage ' \
'for more information: https://recbole.io'
# Readthedocs requires Sphinx extensions to be specified as part of
# install_requires in order to build properly.
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
if on_rtd:
install_requires.extend(setup_requires)
setup(
name='recbole',
version=
'0.1.1', # please remember to edit recbole/__init__.py in response, once updating the version
description='A unified, comprehensive and efficient recommendation library',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/RUCAIBox/RecBole',
author='RecBoleTeam',
author_email='[email protected]',
packages=[
package for package in find_packages()
if package.startswith('recbole')
],
include_package_data=True,
install_requires=install_requires,
setup_requires=setup_requires,
extras_require=extras_require,
zip_safe=False,
classifiers=classifiers,
)