Initial commit

Created the basic project structure.
This commit is contained in:
2021-03-14 15:37:09 +00:00
committed by Sascha Bischoff
commit 17e6d7bb4e
30 changed files with 936 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
"""Top-level package for FUSEionTranscode."""
__author__ = """Sascha Bischoff"""
__email__ = 'sascha.bischoff@googlemail.com'
__version__ = '0.1.0'

19
fuseiontranscode/cli.py Normal file
View File

@@ -0,0 +1,19 @@
"""Console script for fuseiontranscode."""
import argparse
import sys
def main():
"""Console script for fuseiontranscode."""
parser = argparse.ArgumentParser()
parser.add_argument('_', nargs='*')
args = parser.parse_args()
print("Arguments: " + str(args._))
print("Replace this message by putting your code into "
"fuseiontranscode.cli.main")
return 0
if __name__ == "__main__":
sys.exit(main()) # pragma: no cover

View File

@@ -0,0 +1 @@
"""Main module."""