Skip to content

Commit d4a7eb6

Browse files
author
Dan
committed
Updated setup.py post refactor
1 parent c56807e commit d4a7eb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
# License along with this library; if not, write to the Free Software
1414
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515

16-
from distutils.core import setup
17-
from setuptools import find_packages
16+
from setuptools import setup, find_packages
1817

1918
setup(name='parallel-ssh',
2019
version='0.70.3',
2120
description='Asynchronous parallel SSH library',
2221
author='Panos Kittenis',
2322
author_email='pkittenis@gmail.com',
2423
url = "https://github.com/pkittenis/parallel-ssh",
25-
py_modules = ['pssh'],
26-
install_requires = ['paramiko', 'gevent'],
24+
packages = find_packages('.', exclude=(
25+
'embedded_server', 'embedded_server.*')),
26+
install_requires = open('requirements.txt').readlines(),
2727
classifiers = [
2828
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
2929
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)