From 1422e34be9b5fe9b903bea55d45ce162992da3bb Mon Sep 17 00:00:00 2001 From: Matt Graham Date: Sat, 17 Sep 2016 15:08:26 +0100 Subject: [PATCH] Adding setup.py install script for mlp package. --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f5802d5 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +""" Setup script for mlp package. """ + +from setuptools import setup + +setup( + name = "mlp", + author = "Pawel Swietojanski", + description = ("Neural network framework for University of Edinburgh " + "School of Informatics Machine Learning Practical course."), + url = "https://github.com/CSTR-Edinburgh/mlpractical", + packages=['mlp'] +) +