# $Id: setup.py,v 1.1 2004/11/23 21:40:02 dairiki Exp $
#
# Copyright (C) 2004  Geoffrey T. Dairiki <dairiki@dairiki.org>
#
# This file is part of Pyfsp, a pure python implementation
# of the FSP file transfer protocol.
#
# Pyfsp is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# Pyfsp 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

from distutils.core import setup

setup (name = "Distutils",
       version = "0.1pre",
       description = "Python FSP Library and Utilities",
       author = "Geoffrey T. Dairiki",
       author_email = "dairiki@dairiki.org",
       url = "http://fsp.sourceforge.net/pyfsp.html",
       license = "GPL",
       long_description = """\
FSP stands for File Service Protocol. It is a very lightweight UDP-based
protocol for transferring files.  FSP has many benefits over FTP (mainly
for running anonymous archives.)  FSP protocol is valuable in all kinds
of environments because it is one of the only TCP/IP protocols that
is not aggressive about bandwidth, while still being sufficiently
fault tolerant.

This package includes python code for dealing with the FSP protocol.
General library code as well as a general purpose command-line FSP
client (implemented in pure Python) is included.  There are plans
to implement a pure Python server.
""",
       packages = ['fsplib'],
       scripts = ['fsp.py'],
       );
