1#!/usr/bin/env python
2
3import io
4import os
5from setuptools import setup
6
7
8# Need to specify encoding for PY3
9with io.open('README.rst', encoding='utf-8') as fp:
10    description = fp.read()
11setup(
12        name = 'scp',
13        version = '0.13.3',
14        author = 'James Bardin',
15        author_email = 'j.bardin@gmail.com',
16        license = 'LGPL',
17        url = 'https://github.com/jbardin/scp.py',
18        description='scp module for paramiko',
19        long_description=description,
20        py_modules = ['scp'],
21        install_requires = ['paramiko'],
22        keywords=['paramiko', 'ssh', 'scp', 'transfer'],
23        classifiers=[
24            'Development Status :: 5 - Production/Stable',
25            'Intended Audience :: Developers',
26            'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
27            'Operating System :: OS Independent',
28            'Programming Language :: Python',
29            'Programming Language :: Python :: 2',
30            'Programming Language :: Python :: 2.6',
31            'Programming Language :: Python :: 2.7',
32            'Programming Language :: Python :: 3',
33            'Programming Language :: Python :: 3.3',
34            'Programming Language :: Python :: 3.4',
35            'Programming Language :: Python :: 3.5',
36            'Topic :: Internet',
37        ],
38)
39