setup.py: include all packages= , I always forget that

This commit is contained in:
Brian Warner 2015-03-04 00:42:24 -08:00
parent c9e0246266
commit 502d43e0ea

View File

@ -18,7 +18,9 @@ setup(name="wormhole-sync",
license="MIT",
url="https://github.com/warner/wormhole-sync",
package_dir={"": "src"},
packages=["wormhole"],
packages=["wormhole",
"wormhole.blocking", "wormhole.scripts",
"wormhole.test", "wormhole.util"],
entry_points={"console_scripts":
["wormhole = wormhole.scripts.runner:entry"]},
install_requires=["spake2", "pynacl", "requests", "twisted"],