codeecho 1.2.0__tar.gz → 1.2.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.
- {codeecho-1.2.0 → codeecho-1.2.1}/CHANGELOG.md +11 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/PKG-INFO +16 -25
- {codeecho-1.2.0 → codeecho-1.2.1}/README.md +2 -2
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/__init__.py +1 -1
- {codeecho-1.2.0 → codeecho-1.2.1}/pyproject.toml +22 -6
- {codeecho-1.2.0 → codeecho-1.2.1}/LICENSE +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/.ignore +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/__main__.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/basis.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/config.ini +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/config.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/db.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/detector.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/extractor.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/fingerprint.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/logging.ini +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/models.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/normalizer.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/parser.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/reporter/__init__.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/reporter/html_reporter.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/reporter/json_reporter.py +0 -0
- {codeecho-1.2.0 → codeecho-1.2.1}/codeecho/scanner.py +0 -0
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.1 - 2026-09-19
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Packaging metadata updated for publishing to PyPI: added `keywords`, `classifiers`,
|
|
8
|
+
and `[project.urls]` (Homepage, Repository, Documentation, Bug Tracker, Changelog).
|
|
9
|
+
- License declared via the SPDX `license = "MIT"` string with `license-files = ["LICENSE"]`
|
|
10
|
+
instead of the deprecated `{file = "LICENSE"}` table, and the redundant MIT classifier
|
|
11
|
+
was dropped.
|
|
12
|
+
- The `codeecho` console entry point moved from `[tool.poetry.scripts]` to `[project.scripts]`.
|
|
13
|
+
|
|
3
14
|
## 1.2.0 - 2026-09-18
|
|
4
15
|
|
|
5
16
|
### Added
|
|
@@ -1,34 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codeecho
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: A developer tool that scans your codebase to detect and highlight ECHOES of duplicated or near-duplicated code so you can refactor toward cleaner, more maintainable designs.
|
|
5
|
-
License: MIT
|
|
6
|
-
|
|
7
|
-
Copyright (c) 2026 Ron Webb
|
|
8
|
-
|
|
9
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
-
in the Software without restriction, including without limitation the rights
|
|
12
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
-
furnished to do so, subject to the following conditions:
|
|
15
|
-
|
|
16
|
-
The above copyright notice and this permission notice shall be included in all
|
|
17
|
-
copies or substantial portions of the Software.
|
|
18
|
-
|
|
19
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
-
SOFTWARE.
|
|
5
|
+
License-Expression: MIT
|
|
26
6
|
License-File: LICENSE
|
|
7
|
+
Keywords: code-duplication,clone-detection,refactoring,static-analysis,tree-sitter
|
|
27
8
|
Author: Ron Webb
|
|
28
9
|
Requires-Python: >=3.14
|
|
29
|
-
Classifier:
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
30
14
|
Classifier: Programming Language :: Python :: 3
|
|
31
15
|
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
32
18
|
Requires-Dist: braincraft (>=1.2.0,<2.0.0)
|
|
33
19
|
Requires-Dist: click (>=8.4.2,<9.0.0)
|
|
34
20
|
Requires-Dist: env-dir-bootstrap (>=1.1.0,<2.0.0)
|
|
@@ -42,11 +28,16 @@ Requires-Dist: tree-sitter-java (>=0.23.5,<0.24.0)
|
|
|
42
28
|
Requires-Dist: tree-sitter-javascript (>=0.25.0,<0.26.0)
|
|
43
29
|
Requires-Dist: tree-sitter-python (>=0.25.0,<0.26.0)
|
|
44
30
|
Requires-Dist: tree-sitter-typescript (>=0.23.2,<0.24.0)
|
|
31
|
+
Project-URL: Changelog, https://github.com/rcw3bb/codeecho/blob/main/CHANGELOG.md
|
|
32
|
+
Project-URL: Documentation, https://github.com/rcw3bb/codeecho#readme
|
|
33
|
+
Project-URL: Homepage, https://github.com/rcw3bb/codeecho
|
|
34
|
+
Project-URL: Issues, https://github.com/rcw3bb/codeecho/issues
|
|
35
|
+
Project-URL: Repository, https://github.com/rcw3bb/codeecho
|
|
45
36
|
Description-Content-Type: text/markdown
|
|
46
37
|
|
|
47
|
-
# codeecho
|
|
38
|
+
# codeecho
|
|
48
39
|
|
|
49
|
-
[](https://github.com/rcw3bb/codeecho/blob/main/LICENSE) [](https://github.com/rcw3bb/codeecho/blob/main/LICENSE) [](https://github.com/rcw3bb/codeecho/blob/main/CHANGELOG.md) [](https://www.python.org/) [](https://pypi.org/project/codeecho/)
|
|
50
41
|
|
|
51
42
|
> A developer tool that scans your codebase to detect and highlight **echoes** of duplicated or near-duplicated code, so you can refactor toward cleaner, more maintainable designs.
|
|
52
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# codeecho
|
|
1
|
+
# codeecho
|
|
2
2
|
|
|
3
|
-
[](https://github.com/rcw3bb/codeecho/blob/main/LICENSE) [](https://github.com/rcw3bb/codeecho/blob/main/LICENSE) [](https://github.com/rcw3bb/codeecho/blob/main/CHANGELOG.md) [](https://www.python.org/) [](https://pypi.org/project/codeecho/)
|
|
4
4
|
|
|
5
5
|
> A developer tool that scans your codebase to detect and highlight **echoes** of duplicated or near-duplicated code, so you can refactor toward cleaner, more maintainable designs.
|
|
6
6
|
|
|
@@ -1,13 +1,26 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codeecho"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.1"
|
|
4
4
|
description = "A developer tool that scans your codebase to detect and highlight ECHOES of duplicated or near-duplicated code so you can refactor toward cleaner, more maintainable designs."
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Ron Webb"}
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
|
-
license =
|
|
9
|
+
license = "MIT"
|
|
10
|
+
license-files = ["LICENSE"]
|
|
10
11
|
requires-python = ">=3.14"
|
|
12
|
+
keywords = ["code-duplication", "clone-detection", "refactoring", "static-analysis", "tree-sitter"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 5 - Production/Stable",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.14",
|
|
20
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
21
|
+
"Topic :: Software Development :: Libraries",
|
|
22
|
+
]
|
|
23
|
+
scripts = {codeecho = "codeecho.__main__:main"}
|
|
11
24
|
dependencies = [
|
|
12
25
|
"logenrich (>=1.0.1,<2.0.0)",
|
|
13
26
|
"env-dir-bootstrap (>=1.1.0,<2.0.0)",
|
|
@@ -24,6 +37,12 @@ dependencies = [
|
|
|
24
37
|
"tree-sitter-gosu (>=0.2.0,<0.3.0)"
|
|
25
38
|
]
|
|
26
39
|
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://github.com/rcw3bb/codeecho"
|
|
42
|
+
Repository = "https://github.com/rcw3bb/codeecho"
|
|
43
|
+
Documentation = "https://github.com/rcw3bb/codeecho#readme"
|
|
44
|
+
Issues = "https://github.com/rcw3bb/codeecho/issues"
|
|
45
|
+
Changelog = "https://github.com/rcw3bb/codeecho/blob/main/CHANGELOG.md"
|
|
27
46
|
|
|
28
47
|
[build-system]
|
|
29
48
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
@@ -31,10 +50,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
31
50
|
|
|
32
51
|
[tool.poetry]
|
|
33
52
|
packages = [{include = "codeecho"}]
|
|
34
|
-
include = ["codeecho/logging.ini", "codeecho/.ignore", "codeecho/config.ini", "CHANGELOG.md"]
|
|
35
|
-
|
|
36
|
-
[tool.poetry.scripts]
|
|
37
|
-
codeecho = "codeecho.__main__:main"
|
|
53
|
+
include = ["codeecho/logging.ini", "codeecho/.ignore", "codeecho/config.ini", "CHANGELOG.md", "LICENSE"]
|
|
38
54
|
|
|
39
55
|
[dependency-groups]
|
|
40
56
|
dev = [
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|