with open(os.path.join(package_folder, "__init__.py"), "w") as f:
f.write(INIT_SCRIPT.strip("\n "))
f.write("\n")
MANIFEST_IN =
include pvporcupine/LICENSE
include pvporcupine/binding/python/porcupine.py
After Change
f.write(MANIFEST_IN.strip("\n "))
with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as f:
long_description = f.read()
setuptools.setup(
name="pvporcupine",
version="1.8.6",