mlpractical/setup.py
2016-09-21 00:53:52 +01:00

14 lines
397 B
Python

""" Setup script for mlp package. """
from setuptools import setup
setup(
name = "mlp",
author = "Pawel Swietojanski, Steve Renals and Matt Graham",
description = ("Neural network framework for University of Edinburgh "
"School of Informatics Machine Learning Practical course."),
url = "https://github.com/CSTR-Edinburgh/mlpractical",
packages=['mlp']
)