23 lines
479 B
Python
23 lines
479 B
Python
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()
|