I used cython in my pyirt packages, but when I published it in pypi, the .pyx file is not included in tar.gz
I think this should have something to do with the installation file. However, I cannot find a solution to this problem.
You can add the MANIFEST.in file to the top level of your project and add the following line:
MANIFEST.in
global-include *.pyx global-include *.pxd
You can find the correct commands for the MANIFEST.in here file.
here
Source: https://habr.com/ru/post/984177/More articles:How to show a fixed number of rows in listView - androidDjango TransactionTestCase with rollback emulation - pythonHow to convert httppostedfilebase to a String array - asp.net-mvcHow to merge recent changes from base repo to forked repo - gitIn PHP, is it more efficient to use a lambda expression for the called than a string (or array)? - arraysAvoid heap errors during a cold cycle - heapCounting the number of zeros in a row on a Pandas DataFrame? - pythonIt seems that shared_ptr is hiding an error with no virtual destructor. It's right? - c ++ClassCastException: java.lang.String cannot be added to Ljava.lang.String - javaHow to upgrade python 2.7.8 to 2.7.9 in Anaconda without conflict of other components in their environment? - pythonAll Articles