-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
50 lines (48 loc) · 1.38 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
from setuptools import find_packages, setup
setup(
name='RecLab',
version='0.1.2',
author='Karl Krauth',
author_email='karl.krauth@gmail.com',
description='A simulation framework for recommender systems.',
license='MIT',
download_url= 'https://github.com/berkeley-reclab/RecLab/archive/v0.1.2.tar.gz',
packages=find_packages(),
include_package_data=True,
url='https://berkeley-reclab.github.io/',
keywords=[
'recommender',
'recommendation',
'simulation',
'evaluation'
],
install_requires=[
'numpy>=1.19.0',
'pandas>=1.0.5',
'scipy>=1.4.1',
],
extras_require={
'recommenders': [
'keras>=2.4.3',
'scikit-learn>=0.23.1',
'tensorflow>=2.2.0',
'torch>=1.5.1',
'wpyfm>=0.1.9',
]
},
tests_require=[
'pytest>=5.4.3',
'pytest-mock>=3.3.0',
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)