# HG changeset patch # User Jeff Hammel # Date 1513549895 28800 # Node ID 36c141f0f0bd37f47763b2cd5f89d576f13686b1 # Parent f1d1f2388fd69d0ba9b746f9a5d48c5d70413c91 add tensorflow dependency + console scripts diff -r f1d1f2388fd6 -r 36c141f0f0bd setup.py --- 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: