error-translator-cli-v2 1.1.1__tar.gz → 1.1.2__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.
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/PKG-INFO +4 -1
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator_cli_v2.egg-info/PKG-INFO +4 -1
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/pyproject.toml +5 -2
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/README.md +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/__init__.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/ast_handlers.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/auto.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/cli.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/core.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/server.py +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator_cli_v2.egg-info/SOURCES.txt +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator_cli_v2.egg-info/dependency_links.txt +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator_cli_v2.egg-info/entry_points.txt +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator_cli_v2.egg-info/top_level.txt +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/setup.cfg +0 -0
- {error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/tests/test_core.py +0 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: error-translator-cli-v2
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: A CLI tool that explains Python errors in simple human language.
|
|
5
5
|
Author-email: Gourabananda Datta <gourabanandadatta@zohomail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/gourabanandad/error-translator
|
|
7
|
+
Project-URL: Source, https://github.com/gourabanandad/error-translator
|
|
8
|
+
Project-URL: Contributors, https://github.com/gourabanandad/error-translator/graphs/contributors
|
|
6
9
|
Requires-Python: >=3.7
|
|
7
10
|
Description-Content-Type: text/markdown
|
|
8
11
|
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: error-translator-cli-v2
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.2
|
|
4
4
|
Summary: A CLI tool that explains Python errors in simple human language.
|
|
5
5
|
Author-email: Gourabananda Datta <gourabanandadatta@zohomail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/gourabanandad/error-translator
|
|
7
|
+
Project-URL: Source, https://github.com/gourabanandad/error-translator
|
|
8
|
+
Project-URL: Contributors, https://github.com/gourabanandad/error-translator/graphs/contributors
|
|
6
9
|
Requires-Python: >=3.7
|
|
7
10
|
Description-Content-Type: text/markdown
|
|
8
11
|
|
|
@@ -4,14 +4,17 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "error-translator-cli-v2"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.2"
|
|
8
8
|
description = "A CLI tool that explains Python errors in simple human language."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.7"
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "Gourabananda Datta", email = "gourabanandadatta@zohomail.com" }
|
|
13
13
|
]
|
|
14
|
-
|
|
14
|
+
[project.urls]
|
|
15
|
+
"Homepage" = "https://github.com/gourabanandad/error-translator"
|
|
16
|
+
"Source" = "https://github.com/gourabanandad/error-translator"
|
|
17
|
+
"Contributors" = "https://github.com/gourabanandad/error-translator/graphs/contributors"
|
|
15
18
|
[project.scripts]
|
|
16
19
|
explain-error = "error_translator.cli:main"
|
|
17
20
|
|
|
File without changes
|
{error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/__init__.py
RENAMED
|
File without changes
|
{error_translator_cli_v2-1.1.1 → error_translator_cli_v2-1.1.2}/error_translator/ast_handlers.py
RENAMED
|
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
|
|
File without changes
|