-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (37 loc) · 1.31 KB
/
setup.py
File metadata and controls
47 lines (37 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# $Id$
from setuptools import setup, find_packages
setup(
name = "pysftp",
version = "0.3",
#packages = find_packages(),
py_modules = ['pysftp'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['paramiko>=1.7.4'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['README','*.txt', '*.rst'],
},
# metadata for upload to PyPI
author = "Jeff Hinrichs",
author_email = "jeffh@dundeemt.com",
description = "A friendly face on SFTP",
license = "BSD - http://code.google.com/p/pysftp/source/browse/trunk/LICENSE.txt",
keywords = "sftp ssh ftp internet",
url = "http://code.google.com/p/pysftp/", # project home page, if any
long_description = """
pysftp
======
A simple interface to sftp. based on zeth's ssh.py
changes
=======
* 0.2.2
* additions
* chdir(self, path) - change the current working directory on the remote
* getcwd(self) - return the current working directory on the remote
* listdir(self, path='.')return a list of files for the given path
""",
platforms=['any'],
download_url='http://code.google.com/p/pysftp/',
# could also include long_description, download_url, classifiers, etc.
)