Files
core/programming/language/python3/python3-setuptools/actions.py
T
2021-04-04 00:47:59 +03:00

22 lines
538 B
Python

# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
WorkDir="setuptools-%s" % get.srcVERSION()
def setup():
shelltools.makedirs("%s/setuptools-54.2.0/build/scripts-3.8" % get.workDIR())
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")