Skip to content

Commit

Permalink
Only include sprockets.mixins.amqp package
Browse files Browse the repository at this point in the history
the tests were previously included in the package and were thus
importable as `tests` when installed.
  • Loading branch information
nvllsvm committed Jul 10, 2020
1 parent 2ee97c0 commit b882ae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def read_requirements(name):
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=['tests']),
namespace_packages=['sprockets', 'sprockets.mixins'],
install_requires=read_requirements('installation.txt'),
zip_safe=True)

0 comments on commit b882ae7

Please sign in to comment.