Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: third_party/pyftpdlib/setup.py

Issue 16429: python based ftp server (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pyftpdlib/pyftpdlib/ftpserver.py ('k') | third_party/pyftpdlib/test/test_ftpd.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pyftpdlib/setup.py
===================================================================
--- third_party/pyftpdlib/setup.py (revision 0)
+++ third_party/pyftpdlib/setup.py (revision 0)
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+# setup.py
+
+"""pyftpdlib installer.
+
+To install pyftpdlib just open a command shell and run:
+> python setup.py install
+"""
+
+from distutils.core import setup
+
+long_descr = """\
+Python FTP server library, based on asyncore framework, provides
+an high-level portable interface to easily write asynchronous
+FTP servers with Python."""
+
+setup(
+ name='pyftpdlib',
+ version="0.5.0",
+ description='High-level asynchronous FTP server library',
+ long_description=long_descr,
+ license='MIT License',
+ platforms='Platform Independent',
+ author="Giampaolo Rodola'",
+ author_email='g.rodola@gmail.com',
+ url='http://code.google.com/p/pyftpdlib/',
+ download_url='http://pyftpdlib.googlecode.com/files/pyftpdlib-0.5.0.tar.gz',
+ packages=['pyftpdlib'],
+ classifiers=[
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: System Administrators',
+ 'License :: OSI Approved :: MIT License',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Topic :: Internet :: File Transfer Protocol (FTP)',
+ 'Topic :: Software Development :: Libraries :: Python Modules'
+ ],
+ )
« no previous file with comments | « third_party/pyftpdlib/pyftpdlib/ftpserver.py ('k') | third_party/pyftpdlib/test/test_ftpd.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698