Revision: 1261
Author: g.rodola
Date: Fri Apr 11 22:08:12 2014 UTC
Log: update INSTALL, version and setup.py
http://code.google.com/p/pyftpdlib/source/detail?r=1261
Modified:
/trunk/HISTORY
/trunk/INSTALL
/trunk/pyftpdlib/__init__.py
/trunk/setup.py
=======================================
--- /trunk/HISTORY Fri Apr 11 21:12:11 2014 UTC
+++ /trunk/HISTORY Fri Apr 11 22:08:12 2014 UTC
@@ -10,7 +10,7 @@
ENHANCEMENTS
* #262: FTPS is now able to load a certificate chain file. (patch by
- briantomko)
+ Dmitry Panov)
* #277: added a make file for running tests and for other repetitive tasks
(also for Windows).
* #281: tarballs are now hosted on PYPI.
=======================================
--- /trunk/INSTALL Sun Jan 23 19:48:06 2011 UTC
+++ /trunk/INSTALL Fri Apr 11 22:08:12 2014 UTC
@@ -1,4 +1,17 @@
Install
=======
-See doc/install.html
+By using pip:
+
+ $ pip install pyftpdlib
+
+From sources:
+
+ $ svn checkout
https://pyftpdlib.googlecode.com/svn/trunk/ pyftpdlib
+ $ cd pyftpdlib
+ $ python setup.py install
+
+Running tests:
+
+ $ make test
+ $ make test-contrib
=======================================
--- /trunk/pyftpdlib/__init__.py Sun Dec 8 21:40:25 2013 UTC
+++ /trunk/pyftpdlib/__init__.py Fri Apr 11 22:08:12 2014 UTC
@@ -94,7 +94,7 @@
"""
-__ver__ = '1.3.0'
+__ver__ = '1.3.1'
__author__ = "Giampaolo Rodola' <
g.ro...@gmail.com>"
__web__ = '
http://code.google.com/p/pyftpdlib/'
=======================================
--- /trunk/setup.py Mon Dec 30 11:33:10 2013 UTC
+++ /trunk/setup.py Fri Apr 11 22:08:12 2014 UTC
@@ -32,8 +32,7 @@
"""pyftpdlib installer.
-To install pyftpdlib just open a command shell and run:
-> python setup.py install
+$ python setup.py install
"""
import os
@@ -60,19 +59,13 @@
finally:
f.close()
-
-name = 'pyftpdlib'
-version = get_version()
-download_url = ("
http://pyftpdlib.googlecode.com/files/" + name + "-" +
- version + ".tar.gz")
-
if sys.version_info < (2, 4):
sys.exit('python version not supported (min 2.4)')
setup(
- name=name,
- version=version,
- description='High-level asynchronous FTP server library',
+ name='pyftpdlib',
+ version=get_version(),
+ description='Very fast asynchronous FTP server library',
long_description="Python FTP server library provides an high-level "
"portable interface to easily write asynchronous FTP "
"servers with Python.",
@@ -81,7 +74,6 @@
author="Giampaolo Rodola'",
author_email='
g.ro...@gmail.com',
url='
http://code.google.com/p/pyftpdlib/',
- download_url=download_url,
packages=['pyftpdlib', 'pyftpdlib/contrib'],
keywords=['ftp', 'ftps', 'server', 'ftpd', 'daemon', 'python', 'ssl',
'sendfile', 'asynchronous', 'nonblocking', 'eventdriven',
@@ -107,7 +99,8 @@
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
- 'Programming Language :: Python :: 3.3'
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
],
)