add meta package for better dependencies handling

This commit is contained in:
saces 2026-03-12 13:08:03 +01:00
parent 249a67ad10
commit 41fa795971
4 changed files with 24 additions and 0 deletions

2
pygomx-deps/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.egg-info
build/

4
pygomx-deps/README.txt Normal file
View file

@ -0,0 +1,4 @@
pygomx-deps
===========
meta package to install the dependencies for pygomx binaries package

View file

@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"
[project]
name = "pygomx-deps"
version = "0.0.1"
requires-python = ">=3.10"
description = "python dependencies for pygomx"
license = "AGPL-3.0-only"
readme = "README.txt"
dependencies = ["asyncio>=4.0.0", "cffi>=2.0.0"]
[project.urls]
homepage = "https://codeberg.org/saces/pygomx"