sagemath / sage_sample

A sample project illustrating how to write and distribute SageMath extensions
GNU General Public License v2.0
17 stars 15 forks source link

Example of packaging an executable #38

Closed nvcleemp closed 4 years ago

nvcleemp commented 4 years ago

This sample seems to focus on packaging pure Python code. I mainly used Sage packaging to package some programs written in different languages, that were then compiled and copied to $SAGE_LOCAL/bin. I don't see how this can be achieved with the technique explained in this sample.

nthiery commented 4 years ago

This sample seems to focus on packaging pure Python code. I mainly used Sage packaging to package some programs written in different languages, that were then compiled and copied to $SAGE_LOCAL/bin. I don't see how this can be achieved with the technique explained in this sample.

This repository is meant as an example of how to write a Python package (possibly with Cython extensions) that uses Sage. Packaging software for use by Sage is an important but different problem.

Cheers,