diff --git a/.github/workflows/publish-apishell.yml b/.github/workflows/publish-apishell.yml new file mode 100644 index 0000000..b798254 --- /dev/null +++ b/.github/workflows/publish-apishell.yml @@ -0,0 +1,62 @@ +# This workflow will upload a Python Package using Twine when a release is created +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Upload Python Package to PyPi + +on: + release: + types: [published] + +permissions: + contents: read + +jobs: + build: + name: Build distribution + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a binary wheel and source tarball + run: python3 -m build Integrations/ApiShell/ --outdir dist + - name: Store the distribution packages + uses: actions/upload-artifact@v3 + with: + name: python-package-distributions + path: dist/ + + publish-to-pypi: + name: Publish Python distro to PyPi + needs: + - build + runs-on: ubuntu-latest + + environment: + name: pypi + + permissions: + id-token: write + + steps: + - name: Download all the dists + uses: actions/download-artifact@v3 + with: + name: python-package-distributions + path: dist/ + - name: Publish distribution to PyPi + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/publish-test-apishell.yml b/.github/workflows/publish-test-apishell.yml new file mode 100644 index 0000000..b2d3bbc --- /dev/null +++ b/.github/workflows/publish-test-apishell.yml @@ -0,0 +1,65 @@ +# This workflow will upload a Python Package using Twine when a release is created +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Upload Python Package to Test PyPi + +on: + release: + types: [prepublished] + +permissions: + contents: read + +jobs: + build: + name: Build distribution + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a binary wheel and source tarball + run: python3 -m build Integrations/ApiShell/ --outdir dist + - name: Store the distribution packages + uses: actions/upload-artifact@v3 + with: + name: python-package-distributions + path: dist/ + + publish-to-testpypi: + name: Publish Python distro to TestPyPi + needs: + - build + runs-on: ubuntu-latest + + environment: + name: testpypi + url: https://test.pypi.org/project/iriusrisk-apishell-v1/ + + permissions: + id-token: write + + steps: + - name: Download all the dists + uses: actions/download-artifact@v3 + with: + name: python-package-distributions + path: dist/ + - name: Publish distribution to TestPyPi + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ diff --git a/Integrations/ApiShell/pyproject.toml b/Integrations/ApiShell/pyproject.toml new file mode 100644 index 0000000..327df35 --- /dev/null +++ b/Integrations/ApiShell/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["pdm-backend"] +build-backend = "pdm.backend" + +[tool.pdm.build] +includes=["iriusrisk/"] + +[project] +name = "iriusrisk_apishell_v1" +version = "0.2.0" +authors = [ + { name="Walter Gildersleeve", email="wgildersleeve@iriusrisk.com"}, +] +description = "Aids calling IriusRisk v1 APIs. Starting point when creating more complex scripts that create, call and process API calls." +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://github.com/iriusrisk/IriusRisk-Central/tree/main/Integrations/ApiShell" +"Bug Tracker" = "https://github.com/iriusrisk/IriusRisk-Central/issues"