fix setup.py issue

In one of the case, when pegleg is installed as python package, pegleg
is having issue in importing dependency packages. This ps is used for
finding dependency packages automatically.

Change-Id: Iaf3fb0f344e1902af41bcbf0e05e2a43a32836a8
This commit is contained in:
pallav 2018-06-04 23:20:37 +05:30
parent a7f569ce2b
commit 91843bad05
1 changed files with 2 additions and 1 deletions

View File

@ -13,11 +13,12 @@
# limitations under the License.
from setuptools import setup
from setuptools import find_packages
setup(
name='pegleg',
version='0.1.0',
packages=['pegleg', 'tests'],
packages=find_packages(),
entry_points={
'console_scripts': [
'pegleg=pegleg.cli:main',