split wormhole_server step 1: move files

This commit is contained in:
Brian Warner 2016-04-15 16:49:34 -07:00
parent 7e1405576e
commit bde4696a8b
10 changed files with 4 additions and 2 deletions

View File

@ -16,10 +16,12 @@ setup(name="magic-wormhole",
packages=["wormhole",
"wormhole.blocking", "wormhole.twisted",
"wormhole.scripts", "wormhole.test", "wormhole.util",
"wormhole.servers"],
"wormhole_server"],
package_data={"wormhole": ["db-schemas/*.sql"]},
entry_points={"console_scripts":
["wormhole = wormhole.scripts.runner:entry"]},
["wormhole = wormhole.scripts.runner:entry",
"wormhole-server = wormhole_server.runner:entry",
]},
install_requires=["spake2==0.3", "pynacl", "requests", "argparse",
"six", "twisted >= 16.1.0"],
extras_require={"tor": ["txtorcon", "ipaddr"]},