Skip to content

Commit

Permalink
Merge pull request #283 from badcure/040_hotfix
Browse files Browse the repository at this point in the history
Moving to find_packages, there were issues specifying the directories
  • Loading branch information
badcure committed Nov 4, 2019
2 parents 25bc5db + fef54bb commit 667703f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

__version__ = '0.4.1'
project_name = 'pywinrm'
Expand All @@ -21,7 +21,7 @@
author_email='alexey.diyan@gmail.com',
url='http://github.com/diyan/pywinrm/',
license='MIT license',
packages=('winrm', 'winrm.tests', 'winrm.vendor.requests_kerberos'),
packages=find_packages(),
package_data={'winrm.tests': ['*.ps1']},
install_requires=['xmltodict', 'requests>=2.9.1', 'requests_ntlm>=0.3.0', 'six'],
extras_require={
Expand Down

0 comments on commit 667703f

Please sign in to comment.