Skip to content

Commit bbaf5c3

Browse files
committed
update to 7.0.0
1 parent 6e91157 commit bbaf5c3

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

setup.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@
55

66
setup(
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
)

tensorgraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
__version__ = "7.6.2"
2+
__version__ = "7.0"
33

44
from .stopper import EarlyStopper
55
from .sequential import Sequential

0 commit comments

Comments
 (0)