forked from akimach/tfgraphviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.1 KB
/
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
25
26
27
28
29
30
31
32
33
34
# coding: utf-8
try:
import setuptools
from setuptools import setup, find_packages
except ImportError:
print("Please install setuptools.")
import os
long_description = 'A simple graphviz wrapper to visualize a graph like TensorFlow and TensorBoard'
if os.path.exists('README.rst'):
long_description = open('README.rst').read()
setup(
name = 'tfgraphviz',
version = '0.0.4',
description = 'A simple graphviz wrapper to visualize a graph like TensorFlow and TensorBoard',
long_description = long_description,
license = 'MIT',
author = 'akimacho',
author_email = '[email protected]',
url = 'https://github.com/akimach/tfgraphviz',
keywords = 'tensorflow tensor machine learning graphviz',
packages = find_packages(),
install_requires = ['graphviz'],
classifiers = [
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering :: Mathematics',
]
)