-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (38 loc) · 1.47 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
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.7.0', 'scipy==1.6.0', 'pandas>=1.0.5', 'tqdm>=4.48.2',
'colorlog==4.7.2','colorama==0.4.4', 'numpy==1.20.0',
'scikit_learn>=0.23.2', 'pyyaml>=5.1.0', 'tensorboard>=2.5.0', 'recbole==1.0.1']
setup_requires = []
extras_require = {
'hyperopt': ['hyperopt>=0.2.4']
}
classifiers = ["License :: OSI Approved :: MIT License"]
# 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='deepcarskit',
version=
'1.0.1', # please remember to edit deepcarskit/__init__.py in response, once updating the version
description='A Deep Learning Based Context-Aware Recommendation Library',
long_description_content_type="text/markdown",
url='https://github.com/irecsys/DeepCARSKit',
author='Yong Zheng',
author_email='[email protected]',
packages=[
package for package in find_packages()
if package.startswith('deepcarskit')
],
include_package_data=True,
install_requires=install_requires,
setup_requires=setup_requires,
extras_require=extras_require,
zip_safe=False,
classifiers=classifiers,
)