Skip to content

Commit

Permalink
Remove tests from built package (#124)
Browse files Browse the repository at this point in the history
...to prevent the tests to be included in production code.

From "Using find_packages()":
    For simple projects, it’s usually easy enough to manually add
    packages to the packages argument of setup(). However, for very
    large projects (Twisted, PEAK, Zope, Chandler, etc.), it can be a
    big burden to keep the package list updated. That’s what
    setuptools.find_packages() is for.

Read:
https://setuptools.readthedocs.io/en/latest/setuptools.html#using-find-packages

Resolves #123
  • Loading branch information
escodebar authored and miguelgrinberg committed Jul 3, 2019
1 parent 6b4013b commit 399dc8a
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 @@ -25,7 +25,7 @@
author_email='[email protected]',
description='Engine.IO server',
long_description=long_description,
packages=find_packages(),
packages=["engineio"],
zip_safe=False,
include_package_data=True,
platforms='any',
Expand Down

0 comments on commit 399dc8a

Please sign in to comment.