-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.11 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
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="tf_sparse",
python_requires='>3.5.0',
version="0.0.17",
author="Jun Hu",
author_email="[email protected]",
packages=find_packages(
exclude=[
'benchmarks',
'data',
'demo',
'dist',
'doc',
'docs',
'logs',
'models',
'test'
]
),
install_requires=[
"numpy >= 1.17.4",
"scipy >= 1.1.0"
# "networkx >= 2.1",
# "scikit-learn >= 0.22",
# "ogb_lite >= 0.0.3",
# "tqdm"
],
extras_require={
'tf1-cpu': ["tensorflow >= 1.15.0,<2.0.0"],
'tf1-gpu': ["tensorflow-gpu >= 1.15.0,<2.0.0"],
'tf2-cpu': ["tensorflow >= 2.4.0"],
'tf2-gpu': ["tensorflow >= 2.4.0"]
},
description="Efficient and Friendly Sparse Matrix Library for TensorFlow.",
license="GNU General Public License v3.0 (See LICENSE)",
long_description=open("README.rst", "r", encoding="utf-8").read(),
url="https://github.com/CrawlScript/tf_sparse"
)