-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
35 lines (33 loc) · 1.43 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
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='torch-rechub',
version='0.0.1',
description='A Lighting Pytorch Framework for Recommendation System, Easy-to-use and Easy-to-extend.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Mincai Lai',
author_email='[email protected]',
url='https://github.com/morningsky/Torch-RecHub',
install_requires=['numpy>=1.21.5', 'torch>=1.7.0', 'pandas>=1.0.5', 'tqdm>=4.64.0', 'scikit_learn>=0.23.2'],
packages=find_packages(),
platforms=["all"],
classifiers=[
'Intended Audience :: Developers',
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
],
keywords=['ctr', 'click through rate', 'deep learning', 'pytorch', 'recsys', 'recommendation'],
)