-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
30 lines (28 loc) · 906 Bytes
/
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
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='openssh-wrapper',
version='0.5',
description='OpenSSH python wrapper',
author='NetAngels team',
author_email='[email protected]',
url='https://github.com/NetAngels/openssh-wrapper',
long_description = read('README.rst'),
license = 'BSD License',
py_modules=['openssh_wrapper'],
classifiers=(
'Development Status :: 5 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
),
)