codehs-utils 1.0.0__tar.gz → 1.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.
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/LICENSE +1 -1
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/PKG-INFO +4 -4
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/pyproject.toml +4 -4
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/__init__.py +1 -1
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/.gitignore +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/README.md +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/_buffer.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/_pixelbuf.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/_platform.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/colors.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/drawing.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/geometry.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/terminal.py +0 -0
- {codehs_utils-1.0.0 → codehs_utils-1.0.1}/src/codehs_utils/text.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: codehs-utils
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: A small terminal toolkit: colors, gradients, banners, keyboard/mouse input, and drawing for CodeHS-style Python environments.
|
|
5
|
-
Project-URL: Homepage, https://github.com/
|
|
6
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
-
Author-email:
|
|
5
|
+
Project-URL: Homepage, https://github.com/Kundaliel/codehs-utils
|
|
6
|
+
Project-URL: Issues, https://github.com/Kundaliel/codehs-utils
|
|
7
|
+
Author-email: Kundaliel <kundaliel.official@gmail.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Keywords: ansi,codehs,colors,console,terminal,tui
|
|
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codehs-utils"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.1"
|
|
8
8
|
description = "A small terminal toolkit: colors, gradients, banners, keyboard/mouse input, and drawing for CodeHS-style Python environments."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
11
11
|
license = { text = "MIT" }
|
|
12
12
|
authors = [
|
|
13
|
-
{ name = "
|
|
13
|
+
{ name = "Kundaliel", email = "kundaliel.official@gmail.com" },
|
|
14
14
|
]
|
|
15
15
|
keywords = ["terminal", "ansi", "colors", "codehs", "console", "tui"]
|
|
16
16
|
classifiers = [
|
|
@@ -25,8 +25,8 @@ classifiers = [
|
|
|
25
25
|
dependencies = []
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
|
-
Homepage = "https://github.com/
|
|
29
|
-
Issues = "https://github.com/
|
|
28
|
+
Homepage = "https://github.com/Kundaliel/codehs-utils"
|
|
29
|
+
Issues = "https://github.com/Kundaliel/codehs-utils"
|
|
30
30
|
|
|
31
31
|
[tool.hatch.build.targets.wheel]
|
|
32
32
|
packages = ["src/codehs_utils"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|