File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 55
66setup (
77 name = 'tensorgraph' ,
8- url = 'https://github.com/hycis/TensorGraphX' ,
9- download_url = 'https://github.com/hycis/TensorGraphX/tarball/{}' .format (__version__ ),
8+ version = __version__ ,
9+ author = 'Joe Wu' ,
10+ url = 'https://github.com/hycis/TensorGraph' ,
11+ download_url = 'https://github.com/hycis/TensorGraph/tarball/{}' .format (__version__ ),
1012 license = 'Apache 2.0, see LICENCE' ,
1113 description = 'A high level tensorflow library for building deep learning models' ,
1214 long_description = open ('README.md' ).read (),
1315 packages = find_packages (),
1416 zip_safe = False ,
15- include_package_data = True
17+ include_package_data = True ,
18+ install_requires = ['numpy>=1.7.1' ,
19+ 'six>=1.9.0' ,
20+ 'scikit-learn>=0.17' ,
21+ 'pandas>=0.17' ,
22+ 'scipy>=0.17' ],
1623)
Original file line number Diff line number Diff line change 11
2- __version__ = "7.6.2 "
2+ __version__ = "7.0 "
33
44from .stopper import EarlyStopper
55from .sequential import Sequential
You can’t perform that action at this time.
0 commit comments