Migrate from poetry to uv/hatchling

This commit is contained in:
rlaphoenix 2025-10-27 12:39:52 +00:00
parent b30171302f
commit 0f2f34c83f
5 changed files with 1516 additions and 1693 deletions

View File

@ -9,33 +9,25 @@ jobs:
tagged-release:
name: Tagged Release
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install Poetry
uses: abatilo/actions-poetry@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
poetry-version: 2.1.3
- name: Install project
run: poetry install --only main
version: "0.9.5"
enable-cache: true
- name: Install the project
run: uv sync --locked
- name: Build project
run: poetry build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: Python Wheel
path: "dist/*.whl"
- name: Deploy release
uses: marvinpinto/action-automatic-releases@latest
with:
prerelease: false
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: |
dist/*.whl
run: uv build
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish
run: uv publish

View File

@ -15,14 +15,15 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install poetry
uses: abatilo/actions-poetry@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
poetry-version: 2.1.3
- name: Install project
run: poetry install --all-extras
version: "0.9.5"
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run pre-commit which does various checks
run: poetry run pre-commit run --all-files --show-diff-on-failure
run: uv run pre-commit run --all-files --show-diff-on-failure
build:
runs-on: ubuntu-latest
strategy:
@ -34,11 +35,12 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
poetry-version: 2.1.3
- name: Install project
run: poetry install --all-extras --only main
version: "0.9.5"
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras
- name: Build project
run: poetry build
run: uv build

1620
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +1,21 @@
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.poetry]
[project]
name = "pywidevine"
version = "1.9.0"
description = "Widevine CDM (Content Decryption Module) implementation in Python."
license = "GPL-3.0-only"
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
authors = [{ name = "rlaphoenix", email = "rlaphoenix@pm.me" }]
requires-python = ">=3.9"
readme = "README.md"
repository = "https://github.com/devine-dl/pywidevine"
keywords = ["python", "drm", "widevine", "google"]
license = "GPL-3.0-only"
keywords = [
"python",
"drm",
"widevine",
"google",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
@ -19,46 +24,51 @@ classifiers = [
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
dependencies = [
"protobuf~=6.33.0",
"pymp4~=1.4.0",
"pycryptodome~=3.23.0",
"click~=8.1.7",
"requests~=2.32.5",
"Unidecode~=1.3.7",
"PyYAML~=6.0.3",
]
[tool.poetry.urls]
"Issues" = "https://github.com/devine-dl/pywidevine/issues"
"Discussions" = "https://github.com/devine-dl/pywidevine/discussions"
"Changelog" = "https://github.com/devine-dl/pywidevine/blob/master/CHANGELOG.md"
[project.optional-dependencies]
serve = ["aiohttp~=3.13.1"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
protobuf = "^6.33.0"
pymp4 = "^1.4.0"
pycryptodome = "^3.23.0"
click = "^8.1.7"
requests = "^2.32.5"
Unidecode = "^1.3.7"
PyYAML = "^6.0.3"
aiohttp = {version = "^3.13.1", optional = true}
[project.urls]
Repository = "https://github.com/devine-dl/pywidevine"
Issues = "https://github.com/devine-dl/pywidevine/issues"
Discussions = "https://github.com/devine-dl/pywidevine/discussions"
Changelog = "https://github.com/devine-dl/pywidevine/blob/master/CHANGELOG.md"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.3.0"
mypy = "^1.18.2"
mypy-protobuf = "^3.6.0"
types-protobuf = "^6.32.1.20250918"
types-requests = "^2.32.4.20250913"
types-PyYAML = "^6.0.12.20250915"
isort = "^6.1.0"
ruff = "~0.14.2"
[tool.poetry.extras]
serve = ["aiohttp"]
[tool.poetry.scripts]
[project.scripts]
pywidevine = "pywidevine.main:main"
[dependency-groups]
dev = [
"pre-commit~=4.3.0",
"mypy~=1.18.2",
"mypy-protobuf~=3.6.0",
"types-protobuf~=6.32.1.20250918",
"types-requests~=2.32.4.20250913",
"types-PyYAML~=6.0.12.20250915",
"isort~=6.1.0",
"ruff~=0.14.2",
]
[tool.hatch.build.targets.sdist]
include = [
"pywidevine",
"CHANGELOG.md",
]
[tool.hatch.build.targets.wheel]
packages = ["pywidevine"]
[tool.ruff]
extend-exclude = [
"*_pb2.py",

1439
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff