add meta package for better dependencies handling
This commit is contained in:
parent
249a67ad10
commit
41fa795971
4 changed files with 24 additions and 0 deletions
|
|
@ -21,6 +21,8 @@ binary/package install:
|
||||||
|
|
||||||
(only linux-amd64 for now)
|
(only linux-amd64 for now)
|
||||||
pip install --index-url https://codeberg.org/api/packages/saces/pypi/simple/ --no-deps pygomx
|
pip install --index-url https://codeberg.org/api/packages/saces/pypi/simple/ --no-deps pygomx
|
||||||
|
pip install git+https://codeberg.org/saces/pygomx.git#subdirectory=pygomx-deps
|
||||||
|
|
||||||
pip install git+https://codeberg.org/saces/pygomx.git#subdirectory=smal
|
pip install git+https://codeberg.org/saces/pygomx.git#subdirectory=smal
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
2
pygomx-deps/.gitignore
vendored
Normal file
2
pygomx-deps/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
*.egg-info
|
||||||
|
build/
|
||||||
4
pygomx-deps/README.txt
Normal file
4
pygomx-deps/README.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
pygomx-deps
|
||||||
|
===========
|
||||||
|
|
||||||
|
meta package to install the dependencies for pygomx binaries package
|
||||||
16
pygomx-deps/pyproject.toml
Normal file
16
pygomx-deps/pyproject.toml
Normal 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"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue