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