aioxlib 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.
- aioxlib-0.0.1/PKG-INFO +24 -0
- aioxlib-0.0.1/aioxlib/__init__.py +1571 -0
- aioxlib-0.0.1/aioxlib.egg-info/PKG-INFO +24 -0
- aioxlib-0.0.1/aioxlib.egg-info/SOURCES.txt +7 -0
- aioxlib-0.0.1/aioxlib.egg-info/dependency_links.txt +1 -0
- aioxlib-0.0.1/aioxlib.egg-info/requires.txt +1 -0
- aioxlib-0.0.1/aioxlib.egg-info/top_level.txt +1 -0
- aioxlib-0.0.1/pyproject.toml +93 -0
- aioxlib-0.0.1/setup.cfg +4 -0
aioxlib-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aioxlib
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Human friendly interface to XLib subsystems using asyncio python
|
|
5
|
+
Author-email: Jose Tiago Macara Coutinho <coutinhotiago@gmail.com>
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Project-URL: Documentation, https://codeberg.com/tiagocoutinho/aioxlib/
|
|
8
|
+
Project-URL: Homepage, https://codeberg.com/tiagocoutinho/aioxlib/
|
|
9
|
+
Project-URL: Repository, https://codeberg.com/tiagocoutinho/aioxlib/
|
|
10
|
+
Keywords: x11,asyncio
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: System Administrators
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Classifier: Topic :: Multimedia :: Video
|
|
21
|
+
Classifier: Topic :: Multimedia :: Video :: Capture
|
|
22
|
+
Requires-Python: >=3.12
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: python-xlib<1
|