arnmatch 0.3.0__tar.gz → 0.3.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.
- arnmatch-0.3.1/.github/workflows/workflow.yml +23 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/PKG-INFO +3 -3
- {arnmatch-0.3.0 → arnmatch-0.3.1}/README.md +1 -1
- {arnmatch-0.3.0 → arnmatch-0.3.1}/pyproject.toml +1 -1
- {arnmatch-0.3.0 → arnmatch-0.3.1}/src/arnmatch/__init__.py +1 -1
- arnmatch-0.3.0/.claude/settings.local.json +0 -18
- {arnmatch-0.3.0 → arnmatch-0.3.1}/.gitignore +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/.python-version +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/CLAUDE.md +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/Makefile +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/codegen/.gitignore +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/codegen/codegen.py +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/codegen/scraper.py +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/src/arnmatch/arn_patterns.py +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/tests/test_arnmatch.py +0 -0
- {arnmatch-0.3.0 → arnmatch-0.3.1}/uv.lock +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- "v*"
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
release:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
id-token: write
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- uses: astral-sh/setup-uv@v5
|
|
18
|
+
|
|
19
|
+
- name: Build package
|
|
20
|
+
run: uv build
|
|
21
|
+
|
|
22
|
+
- name: Publish to PyPI
|
|
23
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arnmatch
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Parse AWS ARNs into structured data
|
|
5
5
|
Author-email: Andrey Gubarev <andrey@andreygubarev.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
@@ -31,7 +31,7 @@ pip install arnmatch
|
|
|
31
31
|
### CLI
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
$ arnmatch "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
34
|
+
$ uvx arnmatch "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
35
35
|
aws_service: lambda
|
|
36
36
|
aws_region: us-east-1
|
|
37
37
|
aws_account: 123456789012
|
|
@@ -23,7 +23,7 @@ pip install arnmatch
|
|
|
23
23
|
### CLI
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
$ arnmatch "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
26
|
+
$ uvx arnmatch "arn:aws:lambda:us-east-1:123456789012:function:my-function"
|
|
27
27
|
aws_service: lambda
|
|
28
28
|
aws_region: us-east-1
|
|
29
29
|
aws_account: 123456789012
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "arnmatch"
|
|
3
3
|
dynamic = ["version"]
|
|
4
|
-
description = "
|
|
4
|
+
description = "Parse AWS ARNs into structured data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
7
7
|
{ name = "Andrey Gubarev", email = "andrey@andreygubarev.com" }
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"mcp__plugin_adaptivegears_adaptivegears__search",
|
|
5
|
-
"mcp__plugin_adaptivegears_adaptivegears__read",
|
|
6
|
-
"Bash(uv init:*)",
|
|
7
|
-
"Bash(uv venv:*)",
|
|
8
|
-
"Bash(uv add:*)",
|
|
9
|
-
"Bash(uv run:*)",
|
|
10
|
-
"Bash(uv sync:*)",
|
|
11
|
-
"Bash(make lint:*)",
|
|
12
|
-
"Bash(make check:*)"
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
"enabledPlugins": {
|
|
16
|
-
"adaptivegears@adaptivegears-marketplace": true
|
|
17
|
-
}
|
|
18
|
-
}
|
|
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
|