actions.py 394 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/copyleft/gpl.txt
  5. from inary.actionsapi import pythonmodules
  6. from inary.actionsapi import inarytools
  7. def build():
  8. pythonmodules.compile(pyVer="3")
  9. def install():
  10. pythonmodules.install(pyVer="3")
  11. inarytools.dodoc("COPYING", "README.md")