echo-python 0.1.0__py3-none-macosx_11_0_arm64.whl

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.
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: echo-python
3
+ Version: 0.1.0
4
+ Classifier: Environment :: Console
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Programming Language :: Python
8
+ Classifier: Programming Language :: Rust
9
+ Classifier: Topic :: Software Development :: Quality Assurance
10
+ License-File: LICENSE
11
+ Summary: A fast Python linter with custom rules
12
+ Keywords: cli,linter,python,rust
13
+ License-Expression: MIT
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/plain; charset=UTF-8
16
+ Project-URL: Homepage, https://github.com/anyaagarenko/echo-python
17
+ Project-URL: Repository, https://github.com/anyaagarenko/echo-python
18
+
19
+ fast style helper for python projects (ruff compatible)
20
+
21
+
22
+ install in a project:
23
+
24
+ pip install echo-python
25
+
26
+
27
+ cli:
28
+
29
+ echo-python check .
30
+ echo-python check path/to/file.py
31
+ echo-python check --extend-select ECHO001 .
32
+ echo-python check --ignore ECHO001 .
33
+ echo-python check --select ECHO001 .
34
+
35
+
36
+ rules:
37
+
38
+ ECHO001 - calls with multiple args must use keywords (self/cls exempt)
39
+ ECHO002 - mixed lists: numbers by value, then words alphabetically
40
+ ECHO003 - numeric lists sorted by value
41
+ ECHO004 - word/name lists sorted alphabetically
42
+ ECHO005 - params one per line when more than one (self/cls not counted)
43
+
44
+
45
+ configure in pyproject.toml:
46
+
47
+ [tool.echo-python.lint]
48
+ extend-select, ignore, select
49
+
50
+
51
+ ignore a finding:
52
+
53
+ use noqa
54
+
55
+
56
+ development:
57
+
58
+ install mise https://github.com/jdx/mise#1-install-mise
59
+ see Makefile
60
+
61
+
62
+ publishing:
63
+
64
+ bump version in Cargo.toml on main
65
+ github → actions → pypi → run workflow (branch: main)
66
+
@@ -0,0 +1,6 @@
1
+ echo_python-0.1.0.data/scripts/echo-python,sha256=e3o7Jh4li4G0M5yOm2PffhoK1wkAaq7UlkGwHufl-f0,4311760
2
+ echo_python-0.1.0.dist-info/METADATA,sha256=dWOGgUtikC7wZxVZfi8b_tW3CoYQzviNEIoqG2rex20,1612
3
+ echo_python-0.1.0.dist-info/WHEEL,sha256=U927pSLvWHh5eaqcN5v72CdMm-HUWF344fKLe8HhSOU,102
4
+ echo_python-0.1.0.dist-info/licenses/LICENSE,sha256=j7dPYVoEt2EsRCLgSAcdq2ppdT3GxhQ8jKc1IGDWpec,1070
5
+ echo_python-0.1.0.dist-info/sboms/echo-python.cyclonedx.json,sha256=Hp-bk-nGHVy7E0m0mAPjJ1P8C0sUhAOLOWzmLh_rqmg,103380
6
+ echo_python-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.15.0)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-macosx_11_0_arm64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Anya Agarenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.