-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
50 lines (27 loc) · 756 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
40
41
42
43
44
45
46
47
48
49
50
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIRED_PACKAGES = [
# 'tensorflow>=1.4.0,<=1.12.0',
'gensim',
'networkx',
'scikit-learn',
'numpy'
]
setuptools.setup(
name="deeprec",
version="0.0.0",
author="Kai Zhang",
author_email="kaizhangee@gmail.com",
url="https://github.com/End-the-cold-night/Computational-advertising",
packages=setuptools.find_packages(exclude=[]),
python_requires='>=3.4', # 3.4.6
install_requires=REQUIRED_PACKAGES,
extras_require={
"tf": ['tensorflow>=1.4.0,!=1.7.*,!=1.8.*'],
"tf_gpu": ['tensorflow-gpu>=1.4.0,!=1.7.*,!=1.8.*'],
},
entry_points={
},
license="MIT license",
)