Skip to content

Commit

Permalink
update to find_packages()
Browse files Browse the repository at this point in the history
  • Loading branch information
ehdsouza committed Aug 30, 2019
1 parent 3527b84 commit fc40656
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import print_function
import os
import sys
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

__version__ = '1.0.0-rc3'
Expand Down Expand Up @@ -68,7 +67,7 @@ def run_tests(self):
author_email='[email protected]',
long_description=read_md('README.md'),
url='https://github.com/IBM/python-sdk-core',
packages=['ibm_cloud_sdk_core'],
packages=find_packages(),
include_package_data=True,
keywords='watson, ibm, cloud',
classifiers=[
Expand Down

0 comments on commit fc40656

Please sign in to comment.