superscript v 0.0.0.001

This commit is contained in:
art 2020-02-18 11:31:20 -06:00
parent 209f2efe56
commit a92d28ace7

View File

@ -1 +1,27 @@
from analysis import analysis # Titan Robotics Team 2022: Superscript Script
# Written by Arthur Lu & Jacob Levine
# Notes:
# setup:
__version__ = "0.0.0.001"
# changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog:
0.0.0.001:
- created script
- added analysis, numba, numpy imports
"""
__author__ = (
"Arthur Lu <learthurgo@gmail.com>",
"Jacob Levine <jlevine@imsa.edu>",
)
__all__ = [
]
# imports:
from analysis import analysis as an
from numba import jit
import numpy as np