mlpractical/setup.py

14 lines
415 B
Python
Raw Normal View History

""" Setup script for mlp package. """
from setuptools import setup
setup(
name = "mlp",
2017-09-22 15:48:03 +02:00
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']
)