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

Side by Side 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 11 years, 12 months 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # setup.py
3
4 """pyftpdlib installer.
5
6 To install pyftpdlib just open a command shell and run:
7 > python setup.py install
8 """
9
10 from distutils.core import setup
11
12 long_descr = """\
13 Python FTP server library, based on asyncore framework, provides
14 an high-level portable interface to easily write asynchronous
15 FTP servers with Python."""
16
17 setup(
18 name='pyftpdlib',
19 version="0.5.0",
20 description='High-level asynchronous FTP server library',
21 long_description=long_descr,
22 license='MIT License',
23 platforms='Platform Independent',
24 author="Giampaolo Rodola'",
25 author_email='g.rodola@gmail.com',
26 url='http://code.google.com/p/pyftpdlib/',
27 download_url='http://pyftpdlib.googlecode.com/files/pyftpdlib-0.5.0.tar.gz',
28 packages=['pyftpdlib'],
29 classifiers=[
30 'Development Status :: 4 - Beta',
31 'Environment :: Console',
32 'Intended Audience :: Developers',
33 'Intended Audience :: System Administrators',
34 'License :: OSI Approved :: MIT License',
35 'Operating System :: OS Independent',
36 'Programming Language :: Python',
37 'Topic :: Internet :: File Transfer Protocol (FTP)',
38 'Topic :: Software Development :: Libraries :: Python Modules'
39 ],
40 )
OLDNEW
« 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