15 lines
291 B
Python
Executable file
15 lines
291 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
"""Automate - Mathématiques pour l'informatique
|
|
|
|
Program entry point - This is the file to launch
|
|
"""
|
|
|
|
import pathlib
|
|
import sys
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.path.append(str(pathlib.Path(__file__).parent.absolute()))
|
|
from src.main import main
|
|
main()
|