Skip to content

Commit

Permalink
Fix pypi installs - resolves #38
Browse files Browse the repository at this point in the history
  • Loading branch information
pkittenis committed Oct 6, 2015
1 parent 13c67ff commit 57ed4d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
from setuptools import setup, find_packages

setup(name='parallel-ssh',
version='0.80.0',
version='0.80.1',
description='Asynchronous parallel SSH library',
author='Panos Kittenis',
author_email='[email protected]',
url = "https://github.com/pkittenis/parallel-ssh",
packages = find_packages('.', exclude=(
'embedded_server', 'embedded_server.*')),
install_requires = open('requirements.txt').readlines(),
install_requires = ['paramiko', 'gevent'],
classifiers = [
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 57ed4d5

Please sign in to comment.