diff --git a/README.md b/README.md index df4a1c2..474e583 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ Usage: Options: -h --help Prints help. --version Show version. + -i CSV Read this CSV instead of stdin -u Update CELL(s) instead of appending. -k Keep fields as they are (do not try to convert int or float). -c CELL Start appending to CELL. @@ -58,6 +59,7 @@ Options: if empty uses TOSHEETS_SPREADSHEET enviroment variable. --new-sheet= Create a new spreadsheet with the chosen name. Prints the spreadsheetId so it can be piped/stored. + --open Open a browser with the newly created sheet ``` ### Distribution diff --git a/setup.py b/setup.py index 4afba0d..ddf3901 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,12 @@ setup( name='tosheets', - version='0.4.1', + version='0.4.2', author='Timotej Kapus', author_email='kren1@users.noreply.github.com', description=('Cmd utility that send stdin to google sheets'), - long_description=open('README.md').read(), + long_description=open('README.md', encoding='utf-8').read(), + long_description_content_type='text/markdown', license='MIT', keywords='utility sheets command line', url='https://github.com/kren1/tosheets',