sat-mouse-mover 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.1
2
+ Name: sat_mouse_mover
3
+ Version: 0.0.1
4
+ Summary: This script will move the mouse for you
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: License :: Free for non-commercial use
7
+ Classifier: Natural Language :: English
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/plain
11
+ Requires-Dist: mouse==0.7.1
12
+ Provides-Extra: build
13
+ Requires-Dist: mouse==0.7.1; extra == "build"
14
+ Requires-Dist: build; extra == "build"
15
+ Requires-Dist: twine; extra == "build"
16
+ Provides-Extra: test
17
+ Requires-Dist: mouse==0.7.1; extra == "test"
18
+ Provides-Extra: dev
19
+ Requires-Dist: mouse==0.7.1; extra == "dev"
20
+
21
+
22
+ MS Teams changes your online status after certain minutes, which is kinda annoying.
23
+ This script will move the mouse for you, when you are not at the desk,
24
+ this script will move the mouse for you, to keep you online in Teams or some other Messengers. ;-)
25
+
@@ -0,0 +1,8 @@
1
+ # move_my_mouse
2
+
3
+
4
+ ### This script will move the mouse for you
5
+
6
+ MS Teams changes your online status after certain minutes, which is kinda annoying.
7
+ This script will move the mouse for you, when you are not at the desk,
8
+ this script will move the mouse for you, to keep you online in Teams or some other Messengers. ;-)
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.1
2
+ Name: sat_mouse_mover
3
+ Version: 0.0.1
4
+ Summary: This script will move the mouse for you
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: License :: Free for non-commercial use
7
+ Classifier: Natural Language :: English
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/plain
11
+ Requires-Dist: mouse==0.7.1
12
+ Provides-Extra: build
13
+ Requires-Dist: mouse==0.7.1; extra == "build"
14
+ Requires-Dist: build; extra == "build"
15
+ Requires-Dist: twine; extra == "build"
16
+ Provides-Extra: test
17
+ Requires-Dist: mouse==0.7.1; extra == "test"
18
+ Provides-Extra: dev
19
+ Requires-Dist: mouse==0.7.1; extra == "dev"
20
+
21
+
22
+ MS Teams changes your online status after certain minutes, which is kinda annoying.
23
+ This script will move the mouse for you, when you are not at the desk,
24
+ this script will move the mouse for you, to keep you online in Teams or some other Messengers. ;-)
25
+
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ sat_mouse_mover.egg-info/PKG-INFO
4
+ sat_mouse_mover.egg-info/SOURCES.txt
5
+ sat_mouse_mover.egg-info/dependency_links.txt
6
+ sat_mouse_mover.egg-info/entry_points.txt
7
+ sat_mouse_mover.egg-info/requires.txt
8
+ sat_mouse_mover.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ sat_mouse_mover = main:start
@@ -0,0 +1,12 @@
1
+ mouse==0.7.1
2
+
3
+ [build]
4
+ mouse==0.7.1
5
+ build
6
+ twine
7
+
8
+ [dev]
9
+ mouse==0.7.1
10
+
11
+ [test]
12
+ mouse==0.7.1
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,48 @@
1
+ from pydoc import plain
2
+
3
+ from setuptools import setup, find_packages
4
+
5
+ __VERSION__ = '0.0.1'
6
+
7
+
8
+ requirements = [
9
+ 'mouse==0.7.1'
10
+ ]
11
+
12
+ build_requirements = requirements + ['build', 'twine']
13
+
14
+ test_requirements = requirements + []
15
+
16
+ dev_requirements = test_requirements + []
17
+
18
+ setup(
19
+ name='sat_mouse_mover',
20
+ version=__VERSION__,
21
+ description="This script will move the mouse for you",
22
+ long_description="""
23
+ MS Teams changes your online status after certain minutes, which is kinda annoying.
24
+ This script will move the mouse for you, when you are not at the desk,
25
+ this script will move the mouse for you, to keep you online in Teams or some other Messengers. ;-)
26
+ """,
27
+ long_description_content_type="text/plain",
28
+ packages=find_packages(),
29
+ install_requires=requirements,
30
+ extras_require={
31
+ 'build': build_requirements,
32
+ 'test': test_requirements,
33
+ 'dev': dev_requirements,
34
+ },
35
+
36
+ classifiers=[
37
+ "Programming Language :: Python :: 3",
38
+ "License :: Free for non-commercial use",
39
+ "Natural Language :: English",
40
+ "Operating System :: POSIX :: Linux",
41
+ ],
42
+ python_requires='>=3.10',
43
+ entry_points={
44
+ 'console_scripts': [
45
+ 'sat_mouse_mover = main:start',
46
+ ],
47
+ },
48
+ )