-
Notifications
You must be signed in to change notification settings - Fork 137
/
setup.py
36 lines (33 loc) · 1.2 KB
/
setup.py
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
#!/usr/bin/env python
import io
import os
from setuptools import setup
# Need to specify encoding for PY3
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(
name = 'scp',
version = '0.15.0',
author = 'James Bardin',
author_email = 'j.bardin@gmail.com',
maintainer="Remi Rampin",
maintainer_email='remi@rampin.org',
license = 'LGPL-2.1-or-later',
url = 'https://github.com/jbardin/scp.py',
description='scp module for paramiko',
long_description=description,
py_modules = ['scp'],
install_requires = ['paramiko'],
keywords=['paramiko', 'ssh', 'scp', 'transfer'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
)