Skip to content

Commit

Permalink
Merge pull request #91 from launchdarkly/eb/ch31044/package-subdirs-fix
Browse files Browse the repository at this point in the history
2. fix submodule packaging error
  • Loading branch information
eli-darkly authored Jan 31, 2019
2 parents 7c2b501 + 71b821f commit 424db63
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup
from setuptools import find_packages, setup, Command

import sys
import uuid
Expand Down Expand Up @@ -51,7 +48,7 @@ def run(self):
version=ldclient_version,
author='LaunchDarkly',
author_email='team@launchdarkly.com',
packages=['ldclient'],
packages=find_packages(),
url='https://github.com/launchdarkly/python-client',
description='LaunchDarkly SDK for Python',
long_description='LaunchDarkly SDK for Python',
Expand Down

0 comments on commit 424db63

Please sign in to comment.