| Line | Revision | Contents |
| 1 | 2 | # $Id: setup.py,v 1.1 2004/11/23 21:40:02 dairiki Exp $ |
| 2 | # | |
| 3 | # Copyright (C) 2004 Geoffrey T. Dairiki <dairiki@dairiki.org> | |
| 4 | # | |
| 5 | # This file is part of Pyfsp, a pure python implementation | |
| 6 | # of the FSP file transfer protocol. | |
| 7 | # | |
| 8 | # Pyfsp is free software; you can redistribute it and/or | |
| 9 | # modify it under the terms of the GNU General Public License | |
| 10 | # as published by the Free Software Foundation; either version 2 | |
| 11 | # of the License, or (at your option) any later version. | |
| 12 | # | |
| 13 | # Pyfsp is distributed in the hope that it will be useful, | |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | # GNU General Public License for more details. | |
| 17 | # | |
| 18 | # You should have received a copy of the GNU General Public License | |
| 19 | # along with this program; if not, write to the Free Software | |
| 20 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
| 21 | ||
| 22 | from distutils.core import setup | |
| 23 | ||
| 24 | setup (name = "Distutils", | |
| 25 | version = "0.1pre", | |
| 26 | description = "Python FSP Library and Utilities", | |
| 27 | author = "Geoffrey T. Dairiki", | |
| 28 | author_email = "dairiki@dairiki.org", | |
| 29 | url = "http://fsp.sourceforge.net/pyfsp.html", | |
| 30 | license = "GPL", | |
| 31 | long_description = """\ | |
| 32 | FSP stands for File Service Protocol. It is a very lightweight UDP-based | |
| 33 | protocol for transferring files. FSP has many benefits over FTP (mainly | |
| 34 | for running anonymous archives.) FSP protocol is valuable in all kinds | |
| 35 | of environments because it is one of the only TCP/IP protocols that | |
| 36 | is not aggressive about bandwidth, while still being sufficiently | |
| 37 | fault tolerant. | |
| 38 | ||
| 39 | This package includes python code for dealing with the FSP protocol. | |
| 40 | General library code as well as a general purpose command-line FSP | |
| 41 | client (implemented in pure Python) is included. There are plans | |
| 42 | to implement a pure Python server. | |
| 43 | """, | |
| 44 | packages = ['fsplib'], | |
| 45 | scripts = ['fsp.py'], | |
| 46 | ); |
Loggerhead is a web-based interface for Bazaar branches