-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 999 Bytes
/
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
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="info_bpr",
python_requires='>3.5.0',
version="0.0.2",
author="Jun Hu",
author_email="[email protected]",
packages=find_packages(
exclude=[
'benchmarks',
'data',
'demo',
'dist',
'doc',
'docs',
'logs',
'models',
'plots',
'test',
'plot_chart.py',
'demo_tensorflow_info_bpr.py',
'demo_torch_info_bpr.py'
]
),
install_requires=[
"numpy >= 1.17.4",
"tqdm"
],
extras_require={
},
description="InfoBPR: Simple Yet Powerful Ranking Loss",
license="GNU General Public License v3.0 (See LICENSE)",
# long_description=open("README.rst", "r", encoding="utf-8").read(),
long_description="InfoBPR: Simple Yet Powerful Ranking Loss",
url="https://github.com/CrawlScript/InfoBPR"
)