tapterm 0.1.0__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.
tapterm-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: tapterm
3
+ Version: 0.1.0
4
+ Summary: Installs tappty, which provides the `tapterm` instrumented-terminal command.
5
+ Author: Nicholas J. Kisseberth
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/nyxcraft/tappty
8
+ Project-URL: Documentation, https://nyxcraft.github.io/tappty/
9
+ Project-URL: Source, https://github.com/nyxcraft/tappty
10
+ Project-URL: Changelog, https://github.com/nyxcraft/tappty/blob/main/CHANGELOG.md
11
+ Keywords: terminal,pty,curses,pygame,tui,instrumentation
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: System Administrators
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Topic :: Terminals :: Terminal Emulators/X Terminals
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: tappty>=0.1.0
24
+
25
+ # tapterm
26
+
27
+ `tapterm` is the command-line program of the **[tappty](https://pypi.org/project/tappty/)**
28
+ instrumented-terminal toolkit — host a program on a pseudo-terminal, then observe, control,
29
+ and render it in a terminal (CUI), a green-phosphor window (GUI), or a browser tab.
30
+
31
+ This package is a thin **alias**: it ships no code of its own and simply depends on `tappty`,
32
+ which provides the `tapterm` command. So these are equivalent:
33
+
34
+ ```sh
35
+ pip install tapterm # convenience alias -> pulls in tappty
36
+ pip install tappty # the actual toolkit (library + the tapterm command)
37
+ ```
38
+
39
+ Either way you get the `tapterm` command and `import tappty`. The library, the optional
40
+ extras (`sdl` / `gl` / `web` / `video` / `ansi` / `win`), the documentation, and the source all
41
+ live under **tappty**:
42
+
43
+ - Docs: <https://nyxcraft.github.io/tappty/>
44
+ - Source & issues: <https://github.com/nyxcraft/tappty>
@@ -0,0 +1,20 @@
1
+ # tapterm
2
+
3
+ `tapterm` is the command-line program of the **[tappty](https://pypi.org/project/tappty/)**
4
+ instrumented-terminal toolkit — host a program on a pseudo-terminal, then observe, control,
5
+ and render it in a terminal (CUI), a green-phosphor window (GUI), or a browser tab.
6
+
7
+ This package is a thin **alias**: it ships no code of its own and simply depends on `tappty`,
8
+ which provides the `tapterm` command. So these are equivalent:
9
+
10
+ ```sh
11
+ pip install tapterm # convenience alias -> pulls in tappty
12
+ pip install tappty # the actual toolkit (library + the tapterm command)
13
+ ```
14
+
15
+ Either way you get the `tapterm` command and `import tappty`. The library, the optional
16
+ extras (`sdl` / `gl` / `web` / `video` / `ansi` / `win`), the documentation, and the source all
17
+ live under **tappty**:
18
+
19
+ - Docs: <https://nyxcraft.github.io/tappty/>
20
+ - Source & issues: <https://github.com/nyxcraft/tappty>
@@ -0,0 +1,40 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ # `tapterm` is a convenience alias distribution: it ships NO code, it just depends on
6
+ # `tappty`, which provides the `tapterm` command (entry point tappty.cli:main). So
7
+ # `pip install tapterm` does the same thing as `pip install tappty`. The real project,
8
+ # the library, and all the extras live under the name `tappty`. See ../../README.md.
9
+ [project]
10
+ name = "tapterm"
11
+ version = "0.1.0"
12
+ description = "Installs tappty, which provides the `tapterm` instrumented-terminal command."
13
+ readme = "README.md"
14
+ requires-python = ">=3.9"
15
+ license = { text = "MIT" }
16
+ authors = [{ name = "Nicholas J. Kisseberth" }]
17
+ keywords = ["terminal", "pty", "curses", "pygame", "tui", "instrumentation"]
18
+ classifiers = [
19
+ "Development Status :: 4 - Beta",
20
+ "Environment :: Console",
21
+ "Intended Audience :: Developers",
22
+ "Intended Audience :: System Administrators",
23
+ "License :: OSI Approved :: MIT License",
24
+ "Operating System :: POSIX",
25
+ "Programming Language :: Python :: 3",
26
+ "Programming Language :: Python :: 3 :: Only",
27
+ "Topic :: Terminals :: Terminal Emulators/X Terminals",
28
+ ]
29
+ dependencies = ["tappty>=0.1.0"]
30
+
31
+ [project.urls]
32
+ Homepage = "https://github.com/nyxcraft/tappty"
33
+ Documentation = "https://nyxcraft.github.io/tappty/"
34
+ Source = "https://github.com/nyxcraft/tappty"
35
+ Changelog = "https://github.com/nyxcraft/tappty/blob/main/CHANGELOG.md"
36
+
37
+ # Metadata-only: there is intentionally no importable module here -- the command comes
38
+ # from the `tappty` dependency. `py-modules = []` tells setuptools that's deliberate.
39
+ [tool.setuptools]
40
+ py-modules = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: tapterm
3
+ Version: 0.1.0
4
+ Summary: Installs tappty, which provides the `tapterm` instrumented-terminal command.
5
+ Author: Nicholas J. Kisseberth
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/nyxcraft/tappty
8
+ Project-URL: Documentation, https://nyxcraft.github.io/tappty/
9
+ Project-URL: Source, https://github.com/nyxcraft/tappty
10
+ Project-URL: Changelog, https://github.com/nyxcraft/tappty/blob/main/CHANGELOG.md
11
+ Keywords: terminal,pty,curses,pygame,tui,instrumentation
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: System Administrators
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3 :: Only
20
+ Classifier: Topic :: Terminals :: Terminal Emulators/X Terminals
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: tappty>=0.1.0
24
+
25
+ # tapterm
26
+
27
+ `tapterm` is the command-line program of the **[tappty](https://pypi.org/project/tappty/)**
28
+ instrumented-terminal toolkit — host a program on a pseudo-terminal, then observe, control,
29
+ and render it in a terminal (CUI), a green-phosphor window (GUI), or a browser tab.
30
+
31
+ This package is a thin **alias**: it ships no code of its own and simply depends on `tappty`,
32
+ which provides the `tapterm` command. So these are equivalent:
33
+
34
+ ```sh
35
+ pip install tapterm # convenience alias -> pulls in tappty
36
+ pip install tappty # the actual toolkit (library + the tapterm command)
37
+ ```
38
+
39
+ Either way you get the `tapterm` command and `import tappty`. The library, the optional
40
+ extras (`sdl` / `gl` / `web` / `video` / `ansi` / `win`), the documentation, and the source all
41
+ live under **tappty**:
42
+
43
+ - Docs: <https://nyxcraft.github.io/tappty/>
44
+ - Source & issues: <https://github.com/nyxcraft/tappty>
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ tapterm.egg-info/PKG-INFO
4
+ tapterm.egg-info/SOURCES.txt
5
+ tapterm.egg-info/dependency_links.txt
6
+ tapterm.egg-info/requires.txt
7
+ tapterm.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ tappty>=0.1.0