forked from ericjang/tdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 665 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name = 'tfdebugger',
packages = find_packages(),
version = '0.1.1',
description = 'TensorFlow Debugger',
author = 'Eric Jang',
author_email = 'ericjang2004@gmail.com',
url = 'https://github.com/ericjang/tdb', # use the URL to the github repo
download_url = 'https://github.com/ericjang/tdb/archive/0.1.tar.gz',
keywords = ['TDB', 'Deep Learning', 'TensorFlow', 'debugging', 'visualization'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python'
],
license='Apache 2.0',
install_requires=['toposort>=1.4']
)