Skip to content
Advertisement

Tag: packaging

Kivy-Buildozer Android Packaging not working (‘buildozer’ is not recognized as an internal or external command, operable program or batch file.)

I did not find any solutions for this on the internet. I am trying to create the Android apk file from my Kivy-Python file on Windows 10. I followed the standard documentation (e.g. this one or this one). I installed buildozer using the Pycharm IDE environment. I open the command box from the path adress bar of the folder with

How can I include package_data without a MANIFEST.in file?

How can I include package_data for sdist without a MANIFEST.in file? My setup.py looks like this: Versions: I just can’t get foo/bar.txt included. Or is this blog post still true? http://blog.codekills.net/2011/07/15/lies,-more-lies-and-python-packaging-documentation-on–package_data-/ Over the last hour, though, I’ve learned that these statements are somewhere between “dangerously misleading” and “damn lies”. This is because the primary type of Python package is a

Using an extra python package index url with setup.py

Is there a way to use an extra Python package index (ala pip –extra-index-url pypi.example.org mypackage) with setup.py so that running python setup.py install can find the packages hosted on pypi.example.org? Answer If you’re the package maintainer, and you want to host one or more dependencies for your package somewhere other than PyPi, you can use the dependency_links option of

Advertisement