Merge "fix setup.py issue"

This commit is contained in:
Zuul 2018-06-06 06:30:42 +00:00 committed by Gerrit Code Review
commit 97ef079d9e
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',