19 lines
440 B
Python
19 lines
440 B
Python
'''
|
|
JMK Engineering Inc. Python Library for design and such.
|
|
by: Jeff MacKinnon
|
|
|
|
email: jeff@jmkengineering.com
|
|
'''
|
|
import sys
|
|
from .jepl_general import *
|
|
from .jeplpv import *
|
|
from .jepl_circuits import *
|
|
# safety still needs to be re-wrote, but I will do it later.
|
|
#from .jepl_safety import *
|
|
# Templates rely on safety so I will have to fix it too
|
|
#from .jepl_templates import *
|
|
|
|
def Test():
|
|
print( "JMK Python Module works! !")
|
|
|
|
|