Skip to content

Commit 424db63

Browse files
authored
Merge pull request #91 from launchdarkly/eb/ch31044/package-subdirs-fix
2. fix submodule packaging error
2 parents 7c2b501 + 71b821f commit 424db63

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
try:
2-
from setuptools import setup, Command
3-
except ImportError:
4-
from distutils.core import setup
1+
from setuptools import find_packages, setup, Command
52

63
import sys
74
import uuid
@@ -51,7 +48,7 @@ def run(self):
5148
version=ldclient_version,
5249
author='LaunchDarkly',
5350
author_email='[email protected]',
54-
packages=['ldclient'],
51+
packages=find_packages(),
5552
url='https://github.com/launchdarkly/python-client',
5653
description='LaunchDarkly SDK for Python',
5754
long_description='LaunchDarkly SDK for Python',

0 commit comments

Comments
 (0)