mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-12 22:26:18 +00:00
33 lines
549 B
Python
33 lines
549 B
Python
# 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
|
|
|
|
def main():
|
|
|
|
pass
|
|
|
|
main() |