mlpractical/setup.py

12 lines
404 B
Python
Raw Permalink Normal View History

2018-09-13 03:28:00 +02:00
""" 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 "
2024-11-11 15:41:17 +01:00
"School of Informatics Machine Learning Practical course."),
url = "https://github.com/VICO-UoE/mlpractical",
2018-09-13 03:28:00 +02:00
packages=['mlp']
2024-11-11 15:41:17 +01:00
)