Skip to content

Commit

Permalink
bump min py version to 3.11, tag for release
Browse files Browse the repository at this point in the history
  • Loading branch information
fastily committed Dec 8, 2023
1 parent e3108f6 commit f86606f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# im-present
[![Python 3.9+](https://upload.wikimedia.org/wikipedia/commons/4/4f/Blue_Python_3.9%2B_Shield_Badge.svg)](https://www.python.org)
[![Python 3.11+](https://upload.wikimedia.org/wikipedia/commons/6/62/Blue_Python_3.11%2B_Shield_Badge.svg)](https://www.python.org)
[![License: GPL v3](https://upload.wikimedia.org/wikipedia/commons/8/86/GPL_v3_Blue_Badge.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)

Simple utility which moves your mouse by 1 pixel and then back, at a specified interval. Useful for pretending to be at your computer and fooling the apps which track your productivity.

## Installation
```bash
pip install im-present
```

## Usage
```
usage: __main__.py [-h] [-i secs] [-j secs] [-t secs]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PyAutoGUI==0.9.54
rich==13.5.3
rich==13.7.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
python_requires='>=3.11',
)

0 comments on commit f86606f

Please sign in to comment.