arnmatch 0.3.1__tar.gz → 0.3.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.
@@ -1,9 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: arnmatch
3
+ Version: 0.3.2
4
+ Summary: Parse AWS ARNs into structured data (2000+ resource types)
5
+ Author-email: Andrey Gubarev <andrey@andreygubarev.com>
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
1
9
  # arnmatch
2
10
 
3
11
  Parse AWS ARNs into structured data.
4
12
 
5
13
  ![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue)
6
14
 
15
+ ## Why
16
+
17
+ AWS ARN formats are inconsistent. This problem was unsolved. Now it's solved (for 2000+ resource types from 300+ services). You're welcome.
18
+
7
19
  ## Features
8
20
 
9
21
  - Zero runtime dependencies
@@ -88,6 +100,8 @@ Prerequisites: [uv](https://github.com/astral-sh/uv)
88
100
 
89
101
  ```bash
90
102
  make lint # Run ruff linter
103
+ make test # Run pytest tests
104
+ make check # Run lint and test
91
105
  make build # Build wheel and tarball
92
106
  make publish # Build and upload to PyPI
93
107
  make clean # Remove build artifacts
@@ -1,17 +1,13 @@
1
- Metadata-Version: 2.4
2
- Name: arnmatch
3
- Version: 0.3.1
4
- Summary: Parse AWS ARNs into structured data
5
- Author-email: Andrey Gubarev <andrey@andreygubarev.com>
6
- Requires-Python: >=3.10
7
- Description-Content-Type: text/markdown
8
-
9
1
  # arnmatch
10
2
 
11
3
  Parse AWS ARNs into structured data.
12
4
 
13
5
  ![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue)
14
6
 
7
+ ## Why
8
+
9
+ AWS ARN formats are inconsistent. This problem was unsolved. Now it's solved (for 2000+ resource types from 300+ services). You're welcome.
10
+
15
11
  ## Features
16
12
 
17
13
  - Zero runtime dependencies
@@ -96,6 +92,8 @@ Prerequisites: [uv](https://github.com/astral-sh/uv)
96
92
 
97
93
  ```bash
98
94
  make lint # Run ruff linter
95
+ make test # Run pytest tests
96
+ make check # Run lint and test
99
97
  make build # Build wheel and tarball
100
98
  make publish # Build and upload to PyPI
101
99
  make clean # Remove build artifacts
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "arnmatch"
3
3
  dynamic = ["version"]
4
- description = "Parse AWS ARNs into structured data"
4
+ description = "Parse AWS ARNs into structured data (2000+ resource types)"
5
5
  readme = "README.md"
6
6
  authors = [
7
7
  { name = "Andrey Gubarev", email = "andrey@andreygubarev.com" }
@@ -1,6 +1,6 @@
1
1
  """ARN pattern matching using regex patterns."""
2
2
 
3
- __version__ = "0.3.1"
3
+ __version__ = "0.3.2"
4
4
 
5
5
  import sys
6
6
  from dataclasses import dataclass
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes