Add PyPI Support#34
Open
adam-grant-hendry wants to merge 100 commits into
Open
Conversation
1. Copy `Embree 2.17.7 x64-bit` DLLs to `pyembree`, headers to `pyembree/embree2`, and static libs to `pyembree/embree2/lib` 2. Update `setup.py` to include static libs in `Extension` modules list and add DLLs to package data 3. Add cython preprocessor directive to each `*.pyx` and `*.pxd` file to use the `c++` language 4. Change relative imports to absolute in `*.pyx` and `*.pxd` files 5. Add `MANIFEST.in` to include necessary data in package
The `pyproject.toml` can store the package `version`. Furthermore, the command `poetry version` bumps the `version` in the `pyproject.toml` file.
Version 0.1.7
Also add `black` and `isort` as dev-dependencies. `black` respects `isort` directives in `vscode` when sort imports on save is set.
Version 0.1.8
Version 0.1.9
Version 0.1.10
Author
|
@scopatz Please kindly review this PR and let me know if you accept. This adds |
Version 0.2.4
Version 0.2.5
Version 0.2.6
Version 0.2.7
Version 0.2.8
Version 0.2.9
Version 0.2.10
|
@scopatz please approve this PR and merge it to master. |
Author
@Hafplo Even if he did, at this point I am now the owner of the PyPI branch for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit adds
pyembreeas a PyPI package so users maypip installit. This also resolves #23 .