-
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.
Include MANIFEST.in to exclude files. Adapt README for PyPI.
- Loading branch information
Showing
5 changed files
with
91 additions
and
24 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
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Publish ucapi on PyPI | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
verify: | ||
runs-on: ubuntu-22.04 | ||
|
||
name: Verify Python build context | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi | ||
- name: Analyzing the code with pylint | ||
run: | | ||
python -m pylint ucapi | ||
- name: Lint with flake8 | ||
run: | | ||
python -m flake8 ucapi --count --show-source --statistics | ||
- name: Check code formatting with isort | ||
run: | | ||
python -m isort ucapi/. examples/. --check --verbose | ||
- name: Check code formatting with black | ||
run: | | ||
python -m black ucapi examples --check --verbose | ||
build: | ||
name: Build and publish PyPi package | ||
needs: verify | ||
runs-on: ubuntu-22.04 | ||
if: github.repository_owner == 'unfoldedcircle' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install --upgrade build setuptools setuptools_scm | ||
- name: Build package | ||
run: python -m build | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
exclude .* | ||
exclude MANIFEST.in | ||
recursive-exclude .idea * | ||
recursive-exclude .github * |
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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Development Setup | ||
|
||
This library requires Python 3.10 or newer. | ||
|
||
Install build tools: | ||
```shell | ||
pip3 install build setuptools setuptools_scm | ||
``` | ||
|
||
Build: | ||
```shell | ||
python -m build | ||
``` | ||
|
||
Local installation: | ||
```shell | ||
pip3 install --force-reinstall dist/ucapi-$VERSION-py3-none-any.whl | ||
``` |