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

Side by Side Diff: third_party/pyftpdlib/setup.py

Issue 16454: Add pyftpdlib for future ftp unit tests.... (Closed) Base URL: svn://chrome-svn/chrome/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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
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

Powered by Google App Engine
This is Rietveld 408576698