Fix: some subpackages are missing from setup.py.

This commit is contained in:
joo 2018-01-13 01:02:47 +00:00
parent da7c13076f
commit 258c1f2566
1 changed files with 15 additions and 1 deletions

View File

@ -22,7 +22,19 @@ setup(name="minecraft",
url=URL,
download_url=URL + "/tarball/" + __version__,
author=", ".join(MAIN_AUTHORS),
packages=["minecraft", "minecraft.networking"],
packages=["minecraft",
"minecraft.networking",
"minecraft.networking.packets",
"minecraft.networking.packets.clientbound",
"minecraft.networking.packets.clientbound.status",
"minecraft.networking.packets.clientbound.handshake",
"minecraft.networking.packets.clientbound.login",
"minecraft.networking.packets.clientbound.play",
"minecraft.networking.packets.serverbound",
"minecraft.networking.packets.serverbound.status",
"minecraft.networking.packets.serverbound.handshake",
"minecraft.networking.packets.serverbound.login",
"minecraft.networking.packets.serverbound.play"],
keywords=["MineCraft", "networking", "pyCraft", "minecraftdev", "mc"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
@ -35,6 +47,8 @@ setup(name="minecraft",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"