diff --git a/.gitignore b/.gitignore index 4dbf5cc..9dddf42 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ **__pycache__/ .idea **.egg-info/ +build/ +dist/ +.pypirc \ No newline at end of file diff --git a/README.rst b/README.rst index 0be8584..428ba74 100644 --- a/README.rst +++ b/README.rst @@ -16,6 +16,7 @@ Usage requred arguments: -i, --index the number index of the workspace that should be openend. 1 = first workspace in config etc. + Installation ------------ @@ -34,7 +35,7 @@ Example config to be inserted into your i3 config. set $left HDMI-0 set $right HDMI-1 - # WOrkspaces + # Workspaces set $ws1 1:1:Code set $ws2 2:2:Code set $ws3 3:3:Code diff --git a/setup.py b/setup.py index fdefe4a..3812b02 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ setup( entry_points={"console_scripts": ["pi3-smart-workspace=pi3.smart_workspace:main"]}, scripts=["pi3/smart_workspace.py"], long_description=long_description, + long_description_content_type='text/x-rst', author='Asger Geel Weirsøe', author_email='asger@weirsoe.dk', description='Simple program that looks through the i3 config and finds the bound workspaces for each output, and then opening that workspace on the output, that the mouse is currently on.',