forked from buriburisuri/sugartensor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 657 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
from setuptools import find_packages
exec(open('sugartensor/_version.py').read())
setup(
name='sugartensor',
packages=['sugartensor'],
version=__version__,
description='A slim tensorflow wrapper that provides syntactic sugar for tensor variables.',
author='Namju Kim at KakaoBrain Corp.',
url='https://github.com/buriburisuri/sugartensor',
download_url='https://github.com/buriburisuri/sugartensor/tarball/' + __version__,
license='MIT',
install_requires=['tqdm>=4.8.4'],
keywords=['tensorflow', 'sugar', 'sugartensor', 'slim', 'wrapper'],
)