forked from hycis/TensorGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 828 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
from distutils.core import setup
from setuptools import find_packages
version = '4.1.0'
setup(
name='tensorgraph',
version=version,
author='Wu Zhen Zhou',
author_email='[email protected]',
install_requires=['numpy>=1.7.1',
'six>=1.9.0',
'scikit-learn>=0.17',
'pandas>=0.17',
'scipy>=0.17',
'tensorflow>=1.2'],
url='https://github.com/hycis/TensorGraph',
download_url = 'https://github.com/hycis/TensorGraph/tarball/{}'.format(version),
license='Apache 2.0, see LICENCE',
description='A high level tensorflow library for building deep learning models',
long_description=open('README.md').read(),
packages=find_packages(),
zip_safe=False,
include_package_data=True
)