Skip to content

Commit 275f57d

Browse files
mgornyandreax79
authored andcommitted
exclude tests from being installed
Do not install `tests` as a top-level package -- such a package name is bound to collide with other packages, and for this reason no package should be installing files there.
1 parent d9e7c68 commit 275f57d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def readme():
2929
author_email='andrea.bonomi@gmail.com',
3030
url='http://github.com/andreax79/python-cstruct',
3131
license='MIT',
32-
packages=find_packages(exclude=['ez_setup', 'examples']),
32+
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
3333
include_package_data=True,
3434
zip_safe=True,
3535
install_requires=[

0 commit comments

Comments
 (0)