Add pyproject.toml

This commit is contained in:
Joeri Exelmans 2023-03-01 19:03:15 +01:00
parent 8e6a90ef01
commit b2d7c5b4b6
4 changed files with 35 additions and 1 deletions

View file

@ -8,5 +8,5 @@ if __name__ == "__main__":
argparser.add_argument('filename')
args = argparser.parse_args() # exits on error
from .parser import parseFile
from parser import parseFile
print(parseFile(args.filename))