fix: modules not installed

Change-Id: Ie0723a06f9ee7956b786705c242e91b31b572aa0
This commit is contained in:
Aleksandr Dobdin 2016-11-11 17:28:11 +00:00
parent acc17e3fe8
commit 6c0cd0419f

View File

@ -38,7 +38,7 @@ setup(name=pname,
'operations: two-way data transfer, log collection, '
'remote command execution'),
long_description=open('README.md').read(),
packages=[pname, '%s_data' % pname],
packages=[pname, '%s.modules' % pname, '%s_data' % pname],
install_requires=['pyyaml'],
include_package_data=True,
entry_points={'console_scripts': ['%s=%s.cli:main' % (pname, pname)]},