-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.57 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.57 KB
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
# -*- ecoding: utf-8 -*-
# @ModuleName: setup
# @Author: wk
# @Email: 306178200@qq.com
# @Time: 2022/6/10 7:56 PM
from setuptools import setup, find_packages
from distutils.core import setup
with open("Readme.md", "r") as f:
long_description = f.read()
setup(
name='rec_pangu',
version='0.4.1',
description='Some Rank/Multi-task model implemented by Pytorch',
long_description=long_description,
long_description_content_type="text/markdown",
author='wk',
author_email='306178200@qq.com',
url='https://github.com/HaSai666/rec_pangu',
install_requires=['numpy>=1.19.0', 'torch>=1.7.0', 'pandas==1.3.5', 'tqdm', 'scikit_learn>=0.23.2', 'pygments', 'loguru', 'faiss-cpu', 'wandb'], #'torch_sparse','torch_scatter','torch_geometric'
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=['rank', 'multi task', 'deep learning', 'pytorch', 'recsys', 'recommendation'],
)