Closed Anvil closed 6 months ago
Hey There.
I think we forgot to update the setup.py configuration to include the servers submodule in the distributed package.
setup.py
servers
diff --git a/setup.py b/setup.py index ffc90ae..aa7f7a1 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setuptools.setup( "Framework :: AsyncIO", ], url="https://github.com/pogzyb/asyncwhois", - packages=["asyncwhois"], + packages=setuptools.find_packages(), package_dir={"asyncwhois": "asyncwhois"}, python_requires=">=3.9", )
find_packages should automatically do the trick. Sorry for the misshap.
find_packages
Hi - right that was my fault. I released 1.1.2 a little while ago with this fix and yanked 1.1.1 from pypi
Ha, alright I'm lagging. Thank you !
Hey There.
I think we forgot to update the
setup.py
configuration to include theservers
submodule in the distributed package.find_packages
should automatically do the trick. Sorry for the misshap.