17 lines
486 B
Python
17 lines
486 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
|
|
|
from pisi.actionsapi import pythonmodules as py3, shelltools, get
|
|
|
|
t = "dist/importlib_resources-5.10.0-py3-none-any.whl"
|
|
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION", "5.10.0")
|
|
|
|
def build():
|
|
py3.run("-m build", pyVer = '3')
|
|
|
|
def install():
|
|
py3.run("-m installer -d %s %s" % (get.installDIR(), t), pyVer = '3')
|