changeset 93:36c141f0f0bd default tip

add tensorflow dependency + console scripts
author Jeff Hammel <k0scist@gmail.com>
date Sun, 17 Dec 2017 14:31:35 -0800
parents f1d1f2388fd6
children
files setup.py
diffstat 1 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Sun Dec 17 14:26:15 2017 -0800
+++ b/setup.py	Sun Dec 17 14:31:35 2017 -0800
@@ -11,7 +11,8 @@
                 'numpy',
                 'Pillow',
                 'scikit-learn',
-                'scipy']
+                'scipy',
+                'tensorflow']
 
 # allow use of setuptools/distribute or distutils
 kw = {}
@@ -19,6 +20,15 @@
     from setuptools import setup
     kw['entry_points'] = """
     [console_scripts]
+    centroid = nettwerk.centroid:main
+    gaussian = nettwerk.dataset.gauss:main
+    k-means = nettwerk.kmeans:main
+    line = nettwerk.dataset.line:main
+    linear-regression = nettwerk.linear_regression:main
+    nettwerk-mnist = nettwerk.mnist:main
+    random-circle = nettwerk.dataset.circle:main
+    random-data = nettwerk.dataset.rand:main
+    sigmoid = nettwerk.sigmoid:main
 """
     kw['install_requires'] = dependencies
 except ImportError: