-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.pxd files not included in PyDAS installation #11
Comments
The best I've been able to do so far is to get all Python-like files in the root project directory to install by adding the parameter The @rwest: Once this is working we can remove the unsightly |
|
The .pxd files are needed to allow others to link against the compiled pydas.dassl and pydas.daspk modules. The .pyx files are nice to have so that folks have another means of viewing the code behind the compiled modules. Closes #11.
This moves files into new pydas package, and means that software using this library will need to be modified slightly: -from pydas import DASSL +from pydas.dassl import DASSL It also removes DASPK2 and adds DASPK3.1, which allows sensitivity analysis. See jwallen/PyDAS#11 jwallen/PyDAS#12
The .pxd files should be installed alongside the compiled modules in order to allow users to easily compile and link Cython modules against PyDAS.
The .pyx files could also be installed in order to provide another way for users to find the source.
The text was updated successfully, but these errors were encountered: