Skip to content
Advertisement

Tag: build

Remove parent directories in python build source archive

I have the following setup for my python package: The __init__.py is empty, the pyproject.toml and the setup.cfg contain example output from the PyPi documentation page (content shown below). Now, for uploading to PyPi and for packing the python project, I run the command This gives me a new directory dist (in my_package) containing a Test-0.0.0.tar.gz. All this is expected.

How to create OS X app with Python on Windows

I need to automate a cross-platform application build. Entire build runs on Windows machine. Part of it is written in Python and compiles for OS X. Currently this part of build is done manually on OS X. I tried pyinstaller but it looks like it only building for the platform that it is running on. I also tried py2app but

Advertisement