Skip to content

Commit

Permalink
Add pyproject.toml + test building wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Nov 13, 2023
1 parent ef923e3 commit f11b824
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 13 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Release

# Always tests wheel building, but only publish to PyPI on pushed tags.
on:
pull_request:
paths-ignore:
- ".github/workflows/*.yaml"
- "!.github/workflows/release.yaml"
push:
paths-ignore:
- ".github/workflows/*.yaml"
- "!.github/workflows/release.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
tags: ["**"]
workflow_dispatch:

jobs:
build-release:
runs-on: ubuntu-22.04
permissions:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: install build package
run: |
pip install --upgrade pip
pip install build
pip freeze
- name: build release
run: |
python -m build --sdist --wheel .
ls -l dist
- name: publish to pypi
uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.ref, 'refs/tags/')
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "jupyterhub-fancy-profiles"
dynamic = ["version"]
authors = [
{name = "Yuvi", email = "[email protected]"},
]
description = "Fancy Profile UI for jupyterhub-kubespawner"
keywords = ["jupyterhub"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]

[tool.setuptools_scm]
version_file = "jupyterhub_fancy_profiles/_version.py"
13 changes: 0 additions & 13 deletions setup.py

This file was deleted.

0 comments on commit f11b824

Please sign in to comment.