00001 """
00002 Contributions to SLIMpy
00003
00004 """
00005
00006 from distutils.core import setup
00007
00008 __copyright__ = """
00009 Copyright 2008 Sean Ross-Ross
00010 """
00011 __license__ = """
00012 This file is part of SLIMpy .
00013
00014 SLIMpy is free software: you can redistribute it and/or modify
00015 it under the terms of the GNU Lesser General Public License as published by
00016 the Free Software Foundation, either version 3 of the License, or
00017 (at your option) any later version.
00018
00019 SLIMpy is distributed in the hope that it will be useful,
00020 but WITHOUT ANY WARRANTY; without even the implied warranty of
00021 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00022 GNU Lesser General Public License for more details.
00023
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with SLIMpy . If not, see <http://www.gnu.org/licenses/>.
00026 """
00027
00028
00029 packages = [
00030 'slimpy_contrib',
00031 'slimpy_contrib.ana',
00032 'slimpy_contrib.ana.utils',
00033 'slimpy_contrib.ana.problems',
00034 'slimpy_contrib.functions',
00035 'slimpy_contrib.linear_operators',
00036 ]
00037
00038 setup(
00039 name='SLIMpy-Contrib',
00040 version='0.1',
00041 description='SLIMpy User Contributions to SLIMpy',
00042 author = "Sean Ross-Ross",
00043 author_email='srossross@gmail.com',
00044 url='http://slim.eos.ubc.ca/SLIMpy' ,
00045
00046 packages = packages,
00047 )
00048