Adding setup.py install script for mlp package.

This commit is contained in:
Matt Graham 2016-09-17 15:08:26 +01:00
parent 891e4a1208
commit 1422e34be9

13
setup.py Normal file
View File

@ -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']
)