actions.py 461 B

1234567891011121314151617
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Copyright (C) 2018 Süleyman POYRAZ (Zaryob)
  5. # Licensed under the GNU General Public License, version 2.
  6. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  7. from inary.actionsapi import pythonmodules
  8. from inary.actionsapi import shelltools
  9. def build():
  10. shelltools.system("sed -i '7,13d' setup.py")
  11. pythonmodules.compile(pyVer="3")
  12. def install():
  13. pythonmodules.install(pyVer="3")