mlpractical/setup.py
AntreasAntoniou 3bade40a0b Minor Fixes
2017-09-22 14:48:03 +01:00

14 lines
415 B
Python

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