emmental/emmental3.py
Anna Schumaker 4072ea97d4 emmental3.py: Start Emmental 3.0
I'm going to put all of the main source code into a single subdirectory
under emmental/ and separate out tests into a separate tests/ directory.

Additionally, I have switched over to pytest for running tests to give
me better output (with color!)

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2023-03-07 11:18:46 -05:00

9 lines
200 B
Python
Executable File

#!/usr/bin/python
# Copyright 2022 (c) Anna Schumaker.
"""The main Emmental application, version 3.0"""
import sys
import emmental
if __name__ == "__main__":
emmental.Application().run(sys.argv)