Skip to content

Commit 57ed4d5

Browse files
author
Dan
committed
Fix pypi installs - resolves #38
1 parent 13c67ff commit 57ed4d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
from setuptools import setup, find_packages
1717

1818
setup(name='parallel-ssh',
19-
version='0.80.0',
19+
version='0.80.1',
2020
description='Asynchronous parallel SSH library',
2121
author='Panos Kittenis',
2222
author_email='[email protected]',
2323
url = "https://github.com/pkittenis/parallel-ssh",
2424
packages = find_packages('.', exclude=(
2525
'embedded_server', 'embedded_server.*')),
26-
install_requires = open('requirements.txt').readlines(),
26+
install_requires = ['paramiko', 'gevent'],
2727
classifiers = [
2828
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
2929
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)