We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
optbeam
Two step process:
Refactor the multiple optbeam.py files to a pure Python installable (via pip install -e .) package optbeam:
optbeam.py
pip install -e .
optbeam ├── 2d/ ├── 3d/ └── __init__.py
Enable package build process for Cython using:
python setup.py build_ext python setup.py install --user
with
optbeam ├── 2d/ ├── 3d/ ├── __init__.pxd └── __init__.py
see:
The text was updated successfully, but these errors were encountered:
See #12 for the first part.
Sorry, something went wrong.
DanielKotik
No branches or pull requests
Two step process:
Refactor the multiple
optbeam.py
files to a pure Python installable (viapip install -e .
) packageoptbeam
:Enable package build process for Cython using:
with
see:
The text was updated successfully, but these errors were encountered: