Skip to content

Commit

Permalink
Fix (weird) ewmhlib typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalmat committed Apr 24, 2024
1 parent a4bc9a9 commit 01d2425
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Example:
pmc.changeListenerUnregister(propsChanged)


## INSTALL <a name="install"></a>
## Install <a name="install"></a>

To install this module on your system, you can use pip:

Expand All @@ -222,11 +222,11 @@ Then, you can use it on your own projects just importing it:

import pymonctl

## SUPPORT <a name="support"></a>
## Support <a name="support"></a>

In case you have a problem, comments or suggestions, do not hesitate to [open issues](https://github.com/Kalmat/PyMonCtl/issues) on the [project homepage](https://github.com/Kalmat/PyMonCtl)

## USING THIS CODE <a name="using"></a>
## Using this code <a name="using"></a>

If you want to use this code or contribute, you can either:

Expand All @@ -237,7 +237,7 @@ Be sure you install all dependencies described on `requirements.txt` by using pi

python3 -m pip install -r requirements.txt

## TEST <a name="test"></a>
## Test <a name="test"></a>

To test this module on your own system, cd to `tests` folder and run:

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
install_requires=[
"pywin32>=302; sys_platform == 'win32'",
"python-xlib>=0.21; sys_platform == 'linux'",
"ewmhlib>=0.2",
"ewmhlib>=0.2; sys_platform == 'linux'",
"pyobjc>=8.1; sys_platform == 'darwin'",
"typing_extensions>=4.4.0"
],
Expand All @@ -48,7 +48,8 @@
"types-pywin32>=305.0.0.3",
"types-python-xlib>=0.32",
"myst-parser",
"pywinctl>=0.3"
"pywinctl>=0.3",
"ewmhlib>=0.2"
]
},
keywords="screen display monitor control geometry size position frequency scale orientation "
Expand Down

0 comments on commit 01d2425

Please sign in to comment.