Merge pull request 'feat: add package packaging-py' (#158) from sisungo/semios-packages:packaging-py into master

Reviewed-on: #158
This commit was merged in pull request #158.
This commit is contained in:
2026-08-15 21:50:59 +08:00
+22
View File
@@ -0,0 +1,22 @@
from lib.make import *
from lib import python
python.version("26.3")
description("Core utilities for Python packages")
maintainer("sisungo <[email protected]>")
source_url("https://files.pythonhosted.org/packages/7d/fa/3944b40b07da9ce895c0e6303a5ab7d53da063554f534556b134a54d6093/packaging-26.3.tar.gz")
python.builddep("$shortcut")
def build():
python.build()
python.install()
on_build(build)
package("packaging.py")
python.dep("python")
python.use_auto_pack()