Skip to content

Commit

Permalink
Moving to find_packages, there were issues specifying the directories
Browse files Browse the repository at this point in the history
  • Loading branch information
badcure committed Nov 3, 2019
1 parent 2c89e54 commit fef54bb
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
@@ -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='[email protected]',
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 fef54bb

Please sign in to comment.