view python/ppci/__init__.py @ 125:1ee5f36b34ed

Added tag stm32f4discovery flash with python for changeset d38729d35c4d
author Windel Bouwman
date Sun, 13 Jan 2013 10:42:03 +0100
parents f2d980eef509
children b73bc14a3aa3
line wrap: on
line source

# File to make this directory a package.

import sys

version = '0.0.1'

# Assert python version:
if sys.version_info.major != 3:
   print("Needs to be run in python version 3.x")
   sys.exit(1)