unsplit: last fixups
This commit is contained in:
parent
b2c3f49038
commit
7b9c48fbc4
|
@ -2,9 +2,6 @@
|
||||||
# only record trace data for wormhole.*
|
# only record trace data for wormhole.*
|
||||||
source =
|
source =
|
||||||
wormhole
|
wormhole
|
||||||
txwormhole
|
|
||||||
wormhole_cli
|
|
||||||
wormhole_server
|
|
||||||
# and don't trace the test files themselves, or Versioneer's stuff
|
# and don't trace the test files themselves, or Versioneer's stuff
|
||||||
omit =
|
omit =
|
||||||
src/wormhole/test/*
|
src/wormhole/test/*
|
||||||
|
|
5
NEWS.md
5
NEWS.md
|
@ -16,11 +16,6 @@ User-visible changes in "magic-wormhole":
|
||||||
the CLI tool.
|
the CLI tool.
|
||||||
* Twisted-flavor input_code() now does readline-based code entry, with
|
* Twisted-flavor input_code() now does readline-based code entry, with
|
||||||
tab completion.
|
tab completion.
|
||||||
* The code has been split into four separate importable packages:
|
|
||||||
* "wormhole", this contains the blocking library and shared code
|
|
||||||
* "txwormhole": twisted lbirary
|
|
||||||
* "wormhole_cli": CLI scripts
|
|
||||||
* "wormhole_server": code for the Rendezvous and Transit Relay servers
|
|
||||||
* The package now installs two executables: "wormhole" (for send and
|
* The package now installs two executables: "wormhole" (for send and
|
||||||
receive), and "wormhole-server" (to start and manage the relay
|
receive), and "wormhole-server" (to start and manage the relay
|
||||||
servers).
|
servers).
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -15,10 +15,10 @@ setup(name="magic-wormhole",
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
packages=["wormhole",
|
packages=["wormhole",
|
||||||
"wormhole.blocking",
|
"wormhole.blocking",
|
||||||
"wormhole.twisted",
|
|
||||||
"wormhole.cli",
|
"wormhole.cli",
|
||||||
"wormhole.server",
|
"wormhole.server",
|
||||||
"wormhole.test",
|
"wormhole.test",
|
||||||
|
"wormhole.twisted",
|
||||||
],
|
],
|
||||||
package_data={"wormhole.server": ["db-schemas/*.sql"]},
|
package_data={"wormhole.server": ["db-schemas/*.sql"]},
|
||||||
entry_points={"console_scripts":
|
entry_points={"console_scripts":
|
||||||
|
|
Loading…
Reference in New Issue
Block a user