14 lines
409 B
Python
14 lines
409 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/VICO-UoE/mlpractical",
|
|
packages=['mlp']
|
|
)
|
|
|