Fix generated packages

Besides cinderlib and cinderlib.persistence we were also including a
"tests" package we shouldn't be including.

This patch corrects this by fixing the exclude pattern in the
`setuptools.find_packages` call.
This commit is contained in:
Gorka Eguileor
2018-05-18 13:48:08 +02:00
parent ec7cfa49cb
commit 4c1dce9072

View File

@@ -56,7 +56,7 @@ setuptools.setup(
author="Gorka Eguileor",
author_email='geguileo@redhat.com',
url='https://github.com/akrog/cinderlib',
packages=setuptools.find_packages(exclude=['tmp', 'tests.*', 'tests.*']),
packages=setuptools.find_packages(exclude=['tmp', 'tests*']),
include_package_data=True,
install_requires=requirements,
extras_requires=extras,