forked from KomputeProject/kompute
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions to push pypi python package
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,34 @@ | ||
# Python Bindings for Vulkan Kompute | ||
|
||
## Publishing to pypi | ||
|
||
Build source distribution: | ||
|
||
``` | ||
python setup.py sdist bdist_wheel | ||
``` | ||
|
||
Push to test pypi registry: | ||
|
||
``` | ||
python -m twine upload --repository testpypi dist/* | ||
``` | ||
|
||
Install from test pypi: | ||
|
||
``` | ||
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps kp | ||
``` | ||
|
||
Run tests in python/test directory: | ||
|
||
``` | ||
python -m pytest | ||
``` | ||
|
||
Push to official pypi registry: | ||
|
||
``` | ||
python -m twine upload dist/* | ||
``` | ||
|