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:
2
setup.py
2
setup.py
@@ -56,7 +56,7 @@ setuptools.setup(
|
|||||||
author="Gorka Eguileor",
|
author="Gorka Eguileor",
|
||||||
author_email='geguileo@redhat.com',
|
author_email='geguileo@redhat.com',
|
||||||
url='https://github.com/akrog/cinderlib',
|
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,
|
include_package_data=True,
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
extras_requires=extras,
|
extras_requires=extras,
|
||||||
|
|||||||
Reference in New Issue
Block a user