mirror of
https://github.com/pisilinux-3/piksemel3.git
synced 2026-07-30 18:59:04 +00:00
15 lines
322 B
Python
15 lines
322 B
Python
#!/usr/bin/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 pythonmodules
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def install():
|
|
pythonmodules.install(pyVer="3")
|
|
|
|
pisitools.dodoc("README")
|