-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#*****************************************************************************
# Copyright (C) 2010 Dario Malchiodi <[email protected]>
#
# This file is part of yaplf.
# yaplf is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
# yaplf is distributed in the hope that it will be useful, but without any
# warranty; without even the implied warranty of merchantability or fitness
# for a particular purpose. See the GNU Lesser General Public License for
# more details.
# You should have received a copy of the GNU Lesser General Public License
# along with yaplf; if not, see <http://www.gnu.org/licenses/>.
#
#*****************************************************************************
from distutils.core import setup
setup(name = 'yaplf',
version = '0.7',
description = 'Yet Another Python Learning Framework',
author = 'Dario Malchiodi',
author_email = '[email protected]',
url = 'http://homes.dsi.unimi.it/~malchiod/software/yaplf',
packages = ['yaplf', 'yaplf.models', 'yaplf.algorithms'],
requires = ['numpy (>=1.3)', 'cvxopt (>=0.9)', 'PyML (>=0.7)'],
provides = ['yaplf'],
license = 'GNU Lesser General Public License')