Initial commit
Created the basic project structure.
This commit is contained in:
5
fuseiontranscode/__init__.py
Normal file
5
fuseiontranscode/__init__.py
Normal 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
19
fuseiontranscode/cli.py
Normal 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
|
1
fuseiontranscode/fuseiontranscode.py
Normal file
1
fuseiontranscode/fuseiontranscode.py
Normal file
@@ -0,0 +1 @@
|
||||
"""Main module."""
|
Reference in New Issue
Block a user