plainx-sentry 0.1.0__tar.gz → 0.3.0__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.
@@ -0,0 +1,16 @@
1
+ # Local development files
2
+ /.env
3
+ /.plain
4
+ *.sqlite3
5
+
6
+ # Publishing
7
+ /dist
8
+
9
+ # Python
10
+ /.venv
11
+ __pycache__/
12
+ *.py[cod]
13
+ *$py.class
14
+
15
+ # OS files
16
+ .DS_Store
@@ -0,0 +1,76 @@
1
+ Metadata-Version: 2.4
2
+ Name: plainx-sentry
3
+ Version: 0.3.0
4
+ Author-email: Dave Gaeddert <dave.gaeddert@gmail.com>
5
+ Requires-Python: >=3.11
6
+ Requires-Dist: sentry-sdk>=1.8.0
7
+ Description-Content-Type: text/markdown
8
+
9
+ # plainx-sentry
10
+
11
+ Use [Sentry](https://sentry.io/) to monitor errors and performance in your Plain application.
12
+
13
+ ![image](https://user-images.githubusercontent.com/649496/213781768-182322e6-edf0-4d98-8b37-ab564ef23c3b.png)
14
+
15
+ ## Installation
16
+
17
+ ```python
18
+ # settings.py
19
+ INSTALLED_PACKAGES = [
20
+ # ...
21
+ "plainx.sentry",
22
+ ]
23
+
24
+ MIDDLEWARE = [
25
+ # Put SentryMiddleware as early as possible in the middleware stack
26
+ "plainx.sentry.SentryMiddleware",
27
+ # ...
28
+ ]
29
+ ```
30
+
31
+ In your `base.html`, load `sentry` and include the `sentry_js` tag:
32
+
33
+ ```html
34
+ <!-- base.html -->
35
+ <!doctype html>
36
+ <html lang="en">
37
+ <head>
38
+ ...
39
+ {% sentry_js %}
40
+ </head>
41
+ <body>
42
+ ...
43
+ </body>
44
+ </html>
45
+ ```
46
+
47
+ To enable Sentry in production, add the `SENTRY_DSN` to your environment.
48
+ In Heroku, for example:
49
+
50
+ ```sh
51
+ heroku config:set SENTRY_DSN=<your-DSN>
52
+ ```
53
+
54
+ ## Configuration
55
+
56
+ [Look at the `default_settings.py` for all available settings.](./plainx/sentry/default_settings.py)
57
+
58
+ ## Error page feedback widget
59
+
60
+ In your `500.html`, you can optionally use the `sentry_feedback` tag to show Sentry's feedback widget:
61
+
62
+ ```html
63
+ <!-- base.html -->
64
+ <!doctype html>
65
+ <html lang="en">
66
+ <head>
67
+ ...
68
+ {% sentry_feedback %}
69
+ </head>
70
+ <body>
71
+ ...
72
+ </body>
73
+ </html>
74
+ ```
75
+
76
+ ![image](https://user-images.githubusercontent.com/649496/213781811-418500fa-b7f8-43f1-8d28-4fde1bfe2b4b.png)
@@ -0,0 +1,68 @@
1
+ # plainx-sentry
2
+
3
+ Use [Sentry](https://sentry.io/) to monitor errors and performance in your Plain application.
4
+
5
+ ![image](https://user-images.githubusercontent.com/649496/213781768-182322e6-edf0-4d98-8b37-ab564ef23c3b.png)
6
+
7
+ ## Installation
8
+
9
+ ```python
10
+ # settings.py
11
+ INSTALLED_PACKAGES = [
12
+ # ...
13
+ "plainx.sentry",
14
+ ]
15
+
16
+ MIDDLEWARE = [
17
+ # Put SentryMiddleware as early as possible in the middleware stack
18
+ "plainx.sentry.SentryMiddleware",
19
+ # ...
20
+ ]
21
+ ```
22
+
23
+ In your `base.html`, load `sentry` and include the `sentry_js` tag:
24
+
25
+ ```html
26
+ <!-- base.html -->
27
+ <!doctype html>
28
+ <html lang="en">
29
+ <head>
30
+ ...
31
+ {% sentry_js %}
32
+ </head>
33
+ <body>
34
+ ...
35
+ </body>
36
+ </html>
37
+ ```
38
+
39
+ To enable Sentry in production, add the `SENTRY_DSN` to your environment.
40
+ In Heroku, for example:
41
+
42
+ ```sh
43
+ heroku config:set SENTRY_DSN=<your-DSN>
44
+ ```
45
+
46
+ ## Configuration
47
+
48
+ [Look at the `default_settings.py` for all available settings.](./plainx/sentry/default_settings.py)
49
+
50
+ ## Error page feedback widget
51
+
52
+ In your `500.html`, you can optionally use the `sentry_feedback` tag to show Sentry's feedback widget:
53
+
54
+ ```html
55
+ <!-- base.html -->
56
+ <!doctype html>
57
+ <html lang="en">
58
+ <head>
59
+ ...
60
+ {% sentry_feedback %}
61
+ </head>
62
+ <body>
63
+ ...
64
+ </body>
65
+ </html>
66
+ ```
67
+
68
+ ![image](https://user-images.githubusercontent.com/649496/213781811-418500fa-b7f8-43f1-8d28-4fde1bfe2b4b.png)
@@ -1,10 +1,10 @@
1
1
  import sentry_sdk
2
- from plain.packages import PackageConfig
2
+ from plain.packages import PackageConfig, register_config
3
3
  from plain.runtime import settings
4
4
 
5
5
 
6
+ @register_config
6
7
  class PlainxSentryConfig(PackageConfig):
7
- name = "plainx.sentry"
8
8
  label = "plainxsentry"
9
9
 
10
10
  def ready(self):
@@ -1,8 +1,10 @@
1
1
  import sentry_sdk
2
2
  from plain.runtime import settings
3
+ from plain.templates import register_template_extension
3
4
  from plain.templates.jinja.extensions import InclusionTagExtension
4
5
 
5
6
 
7
+ @register_template_extension
6
8
  class SentryJSExtension(InclusionTagExtension):
7
9
  tags = {"sentry_js"}
8
10
  template_name = "sentry/js.html"
@@ -44,6 +46,7 @@ class SentryJSExtension(InclusionTagExtension):
44
46
  return sentry_context
45
47
 
46
48
 
49
+ @register_template_extension
47
50
  class SentryFeedbackExtension(SentryJSExtension):
48
51
  tags = {"sentry_feedback"}
49
52
 
@@ -51,9 +54,3 @@ class SentryFeedbackExtension(SentryJSExtension):
51
54
  context = super().get_context(context, *args, **kwargs)
52
55
  context["sentry_dialog_event_id"] = sentry_sdk.last_event_id()
53
56
  return context
54
-
55
-
56
- extensions = [
57
- SentryJSExtension,
58
- SentryFeedbackExtension,
59
- ]
@@ -0,0 +1,27 @@
1
+ [project]
2
+ name = "plainx-sentry"
3
+ version = "0.3.0"
4
+ description = ""
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Dave Gaeddert", email = "dave.gaeddert@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ "sentry-sdk>=1.8.0",
12
+ ]
13
+
14
+ [dependency-groups]
15
+ dev = [
16
+ "plain<1.0.0",
17
+ "plain-code<1.0.0",
18
+ "plain-pytest<1.0.0",
19
+ ]
20
+
21
+
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["plainx"]
24
+
25
+ [build-system]
26
+ requires = ["hatchling"]
27
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ #!/bin/sh -e
2
+ uv sync
@@ -0,0 +1,2 @@
1
+ #!/bin/sh -e
2
+ uv run pytest tests
@@ -0,0 +1,34 @@
1
+ from pathlib import Path
2
+
3
+ BASE_DIR = Path(__file__).parent.absolute()
4
+
5
+ SECRET_KEY = "secret"
6
+
7
+ DEBUG = True
8
+
9
+ INSTALLED_PACKAGES = [
10
+ "plain.auth",
11
+ "plain.sessions",
12
+ "plainx.sentry",
13
+ ]
14
+
15
+ MIDDLEWARE = [
16
+ "plain.middleware.security.SecurityMiddleware",
17
+ "plain.sessions.middleware.SessionMiddleware",
18
+ "plain.middleware.common.CommonMiddleware",
19
+ "plain.csrf.middleware.CsrfViewMiddleware",
20
+ "plain.auth.middleware.AuthenticationMiddleware",
21
+ "plain.middleware.clickjacking.XFrameOptionsMiddleware",
22
+ "plainx.sentry.middleware.SentryFeedbackMiddleware",
23
+ ]
24
+
25
+ DATABASES = {
26
+ "default": {
27
+ "ENGINE": "plain.db.backends.sqlite3",
28
+ "NAME": BASE_DIR / "db.sqlite3",
29
+ }
30
+ }
31
+
32
+ ROOT_URLCONF = "urls"
33
+
34
+ USE_TZ = True
@@ -0,0 +1,13 @@
1
+ {% load sentry %}
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+ <title>Document</title>
9
+ {% sentry_js %}
10
+ </head>
11
+ <body>
12
+ </body>
13
+ </html>
@@ -0,0 +1,137 @@
1
+ import sentry_sdk
2
+ from plain.auth import get_user_model
3
+ from plain.views import TemplateView
4
+
5
+ from plainx.sentry.templatetags.sentry import sentry_js
6
+
7
+ SENTRY_TEST_DSN = "https://publickey@1.ingest.sentry.io/1"
8
+
9
+
10
+ def test_sentry_tag(settings, rf):
11
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
12
+ settings.SENTRY_JS_ENABLED = True
13
+
14
+ view = TemplateView.as_view(template_name="index.html")
15
+ request = rf.get("/")
16
+ response = view(request)
17
+ response.render()
18
+
19
+ assert (
20
+ b'<script src="https://js.sentry-cdn.com/publickey.min.js" crossorigin="anonymous"></script>'
21
+ in response.content
22
+ )
23
+
24
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
25
+ settings.SENTRY_JS_ENABLED = False
26
+ response = view(request)
27
+ response.render()
28
+ assert b"sentry-cdn" not in response.content
29
+
30
+ settings.SENTRY_DSN = ""
31
+ settings.SENTRY_JS_ENABLED = True
32
+ response = view(request)
33
+ response.render()
34
+ assert b"sentry-cdn" not in response.content
35
+
36
+
37
+ def test_sentry_pii_enabled(settings, rf):
38
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
39
+ settings.SENTRY_PII_ENABLED = True
40
+
41
+ request = rf.get("/")
42
+ request.user = get_user_model()(id=1, email="test@example.com", username="test")
43
+
44
+ assert sentry_js({"request": request}) == {
45
+ "sentry_js_enabled": True,
46
+ "sentry_public_key": "publickey",
47
+ "sentry_dialog_event_id": None,
48
+ "sentry_init": {
49
+ "release": None,
50
+ "environment": "production",
51
+ "sendDefaultPii": True,
52
+ "initialScope": {
53
+ "user": {
54
+ "id": 1,
55
+ "email": "test@example.com",
56
+ "username": "test",
57
+ }
58
+ },
59
+ },
60
+ }
61
+
62
+
63
+ def test_sentry_pii_enabled_without_user(settings, rf):
64
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
65
+ settings.SENTRY_PII_ENABLED = True
66
+
67
+ request = rf.get("/")
68
+
69
+ assert sentry_js({"request": request}) == {
70
+ "sentry_js_enabled": True,
71
+ "sentry_public_key": "publickey",
72
+ "sentry_dialog_event_id": None,
73
+ "sentry_init": {
74
+ "release": None,
75
+ "environment": "production",
76
+ "sendDefaultPii": True,
77
+ },
78
+ }
79
+
80
+
81
+ def test_sentry_pii_disabled(settings, rf):
82
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
83
+ settings.SENTRY_PII_ENABLED = False
84
+
85
+ request = rf.get("/")
86
+ request.user = get_user_model()(id=1, email="test@example.com", username="test")
87
+
88
+ assert sentry_js({"request": request}) == {
89
+ "sentry_js_enabled": True,
90
+ "sentry_public_key": "publickey",
91
+ "sentry_dialog_event_id": None,
92
+ "sentry_init": {
93
+ "release": None,
94
+ "environment": "production",
95
+ "sendDefaultPii": False,
96
+ },
97
+ }
98
+
99
+
100
+ def test_sentry_release_env(settings, rf):
101
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
102
+ settings.SENTRY_PII_ENABLED = False
103
+ settings.SENTRY_RELEASE = "v1"
104
+ settings.SENTRY_ENVIRONMENT = "production"
105
+
106
+ request = rf.get("/")
107
+ request.user = get_user_model()(id=1, email="test@example.com", username="test")
108
+
109
+ assert sentry_js({"request": request}) == {
110
+ "sentry_js_enabled": True,
111
+ "sentry_public_key": "publickey",
112
+ "sentry_dialog_event_id": None,
113
+ "sentry_init": {
114
+ "release": "v1",
115
+ "environment": "production",
116
+ "sendDefaultPii": False,
117
+ },
118
+ }
119
+
120
+
121
+ def test_sentry_feedback_middleware(settings, client):
122
+ settings.SENTRY_DSN = SENTRY_TEST_DSN
123
+
124
+ sentry_sdk.Hub.current._last_event_id = "test_event_id" # fake this
125
+ client.raise_request_exception = False
126
+ response = client.get("/error/")
127
+
128
+ assert response.status_code == 500
129
+ assert b"Sentry.onLoad" in response.content
130
+
131
+ # # # Have to test the middleware directly
132
+ # middleware = SentryFeedbackMiddleware(get_response=lambda request: response)
133
+ # response = middleware(response.request)
134
+
135
+ # assert response.status_code == 500
136
+ # assert b"Sentry.onLoad" in response.content
137
+ # assert b"Sentry.showReportDialog" in response.content
@@ -0,0 +1,15 @@
1
+ from plain.urls import path
2
+ from plain.views import TemplateView
3
+
4
+
5
+ class ErrorView(TemplateView):
6
+ template_name = "index.html" # Won't actually render this, will error instead
7
+
8
+ def get_context(self, **kwargs):
9
+ raise Exception("Test!")
10
+
11
+
12
+ urlpatterns = [
13
+ path("error/", ErrorView),
14
+ path("", TemplateView.as_view(template_name="index.html"), name="index"),
15
+ ]
@@ -0,0 +1,257 @@
1
+ version = 1
2
+ revision = 1
3
+ requires-python = ">=3.11"
4
+
5
+ [[package]]
6
+ name = "certifi"
7
+ version = "2025.1.31"
8
+ source = { registry = "https://pypi.org/simple" }
9
+ sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 }
10
+ wheels = [
11
+ { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 },
12
+ ]
13
+
14
+ [[package]]
15
+ name = "click"
16
+ version = "8.1.8"
17
+ source = { registry = "https://pypi.org/simple" }
18
+ dependencies = [
19
+ { name = "colorama", marker = "sys_platform == 'win32'" },
20
+ ]
21
+ sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 }
22
+ wheels = [
23
+ { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 },
24
+ ]
25
+
26
+ [[package]]
27
+ name = "colorama"
28
+ version = "0.4.6"
29
+ source = { registry = "https://pypi.org/simple" }
30
+ sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 }
31
+ wheels = [
32
+ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 },
33
+ ]
34
+
35
+ [[package]]
36
+ name = "iniconfig"
37
+ version = "2.0.0"
38
+ source = { registry = "https://pypi.org/simple" }
39
+ sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 }
40
+ wheels = [
41
+ { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
42
+ ]
43
+
44
+ [[package]]
45
+ name = "jinja2"
46
+ version = "3.1.5"
47
+ source = { registry = "https://pypi.org/simple" }
48
+ dependencies = [
49
+ { name = "markupsafe" },
50
+ ]
51
+ sdist = { url = "https://files.pythonhosted.org/packages/af/92/b3130cbbf5591acf9ade8708c365f3238046ac7cb8ccba6e81abccb0ccff/jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", size = 244674 }
52
+ wheels = [
53
+ { url = "https://files.pythonhosted.org/packages/bd/0f/2ba5fbcd631e3e88689309dbe978c5769e883e4b84ebfe7da30b43275c5a/jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb", size = 134596 },
54
+ ]
55
+
56
+ [[package]]
57
+ name = "markupsafe"
58
+ version = "3.0.2"
59
+ source = { registry = "https://pypi.org/simple" }
60
+ sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 }
61
+ wheels = [
62
+ { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 },
63
+ { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 },
64
+ { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 },
65
+ { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 },
66
+ { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 },
67
+ { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 },
68
+ { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 },
69
+ { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 },
70
+ { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 },
71
+ { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 },
72
+ { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 },
73
+ { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 },
74
+ { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 },
75
+ { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 },
76
+ { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 },
77
+ { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 },
78
+ { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 },
79
+ { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 },
80
+ { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 },
81
+ { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 },
82
+ { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 },
83
+ { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 },
84
+ { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 },
85
+ { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 },
86
+ { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 },
87
+ { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 },
88
+ { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 },
89
+ { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 },
90
+ { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 },
91
+ { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 },
92
+ { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 },
93
+ { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 },
94
+ { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 },
95
+ { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 },
96
+ { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 },
97
+ { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 },
98
+ { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 },
99
+ { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 },
100
+ { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 },
101
+ { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 },
102
+ ]
103
+
104
+ [[package]]
105
+ name = "packaging"
106
+ version = "24.2"
107
+ source = { registry = "https://pypi.org/simple" }
108
+ sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
109
+ wheels = [
110
+ { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
111
+ ]
112
+
113
+ [[package]]
114
+ name = "plain"
115
+ version = "0.29.0"
116
+ source = { registry = "https://pypi.org/simple" }
117
+ dependencies = [
118
+ { name = "click" },
119
+ { name = "jinja2" },
120
+ ]
121
+ sdist = { url = "https://files.pythonhosted.org/packages/65/19/ef5b99dfaf5ac341edf216b2a95d596b05d8a000b5efe563f6f59a03ac7c/plain-0.29.0.tar.gz", hash = "sha256:6d3a415c2a0237c1de88ade5c4f5dbd49b9af40208d5596e2b0ea1733a34a5ba", size = 151947 }
122
+ wheels = [
123
+ { url = "https://files.pythonhosted.org/packages/18/6d/270cb6afba62de56e0cb3076da1f0471101fdf4afd8df4d8799236a8fcf8/plain-0.29.0-py3-none-any.whl", hash = "sha256:d0eafbbcc95a8d1d013eb6b222bacd69ee4fbeaa33e3f6362fc7d352388a5818", size = 195999 },
124
+ ]
125
+
126
+ [[package]]
127
+ name = "plain-code"
128
+ version = "0.6.0"
129
+ source = { registry = "https://pypi.org/simple" }
130
+ dependencies = [
131
+ { name = "plain" },
132
+ { name = "ruff" },
133
+ ]
134
+ sdist = { url = "https://files.pythonhosted.org/packages/88/99/391e96424356a72842b64eeef6a0bd2336210a66d6c013b2752776a776b8/plain_code-0.6.0.tar.gz", hash = "sha256:820f18d23919a2c0439ccc836ba30b53b311fdaa10a0a698607753f308e61ebc", size = 2845 }
135
+ wheels = [
136
+ { url = "https://files.pythonhosted.org/packages/db/b3/a2fd0349a65e984ba7223c4050e947b23715a3100fbf9039e131bef79daf/plain_code-0.6.0-py3-none-any.whl", hash = "sha256:444b7cf229cb80d4325bddd0ab143779c35e2bdec2609b50c62964d3ebea8651", size = 4246 },
137
+ ]
138
+
139
+ [[package]]
140
+ name = "plain-pytest"
141
+ version = "0.6.0"
142
+ source = { registry = "https://pypi.org/simple" }
143
+ dependencies = [
144
+ { name = "click" },
145
+ { name = "plain" },
146
+ { name = "pytest" },
147
+ { name = "python-dotenv" },
148
+ ]
149
+ sdist = { url = "https://files.pythonhosted.org/packages/22/ec/e3fdcfa16cee5626e20a6ad782865f7aca50a18da0c5e44ac38ffe5d668c/plain_pytest-0.6.0.tar.gz", hash = "sha256:9555988dcbad89ea0496d29fb4c02cea33790f1dfe8d0b1e86c5de1aab4e5031", size = 2995 }
150
+ wheels = [
151
+ { url = "https://files.pythonhosted.org/packages/2e/8b/b98152709cb609ef25b74bd49e611e303901aa5fc9dab632624b7b07233d/plain_pytest-0.6.0-py3-none-any.whl", hash = "sha256:a1e5743a324e204ca7118e4193c07a7db3f3d1f01f9555b8f9c4cb2114f61e87", size = 4781 },
152
+ ]
153
+
154
+ [[package]]
155
+ name = "plainx-sentry"
156
+ version = "0.2.0"
157
+ source = { editable = "." }
158
+ dependencies = [
159
+ { name = "sentry-sdk" },
160
+ ]
161
+
162
+ [package.dev-dependencies]
163
+ dev = [
164
+ { name = "plain" },
165
+ { name = "plain-code" },
166
+ { name = "plain-pytest" },
167
+ ]
168
+
169
+ [package.metadata]
170
+ requires-dist = [{ name = "sentry-sdk", specifier = ">=1.8.0" }]
171
+
172
+ [package.metadata.requires-dev]
173
+ dev = [
174
+ { name = "plain", specifier = "<1.0.0" },
175
+ { name = "plain-code", specifier = "<1.0.0" },
176
+ { name = "plain-pytest", specifier = "<1.0.0" },
177
+ ]
178
+
179
+ [[package]]
180
+ name = "pluggy"
181
+ version = "1.5.0"
182
+ source = { registry = "https://pypi.org/simple" }
183
+ sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 }
184
+ wheels = [
185
+ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 },
186
+ ]
187
+
188
+ [[package]]
189
+ name = "pytest"
190
+ version = "8.3.5"
191
+ source = { registry = "https://pypi.org/simple" }
192
+ dependencies = [
193
+ { name = "colorama", marker = "sys_platform == 'win32'" },
194
+ { name = "iniconfig" },
195
+ { name = "packaging" },
196
+ { name = "pluggy" },
197
+ ]
198
+ sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891 }
199
+ wheels = [
200
+ { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634 },
201
+ ]
202
+
203
+ [[package]]
204
+ name = "python-dotenv"
205
+ version = "1.0.1"
206
+ source = { registry = "https://pypi.org/simple" }
207
+ sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115 }
208
+ wheels = [
209
+ { url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 },
210
+ ]
211
+
212
+ [[package]]
213
+ name = "ruff"
214
+ version = "0.9.9"
215
+ source = { registry = "https://pypi.org/simple" }
216
+ sdist = { url = "https://files.pythonhosted.org/packages/6f/c3/418441a8170e8d53d05c0b9dad69760dbc7b8a12c10dbe6db1e1205d2377/ruff-0.9.9.tar.gz", hash = "sha256:0062ed13f22173e85f8f7056f9a24016e692efeea8704d1a5e8011b8aa850933", size = 3717448 }
217
+ wheels = [
218
+ { url = "https://files.pythonhosted.org/packages/bc/c3/2c4afa9ba467555d074b146d9aed0633a56ccdb900839fb008295d037b89/ruff-0.9.9-py3-none-linux_armv6l.whl", hash = "sha256:628abb5ea10345e53dff55b167595a159d3e174d6720bf19761f5e467e68d367", size = 10027252 },
219
+ { url = "https://files.pythonhosted.org/packages/33/d1/439e58487cf9eac26378332e25e7d5ade4b800ce1eec7dc2cfc9b0d7ca96/ruff-0.9.9-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b6cd1428e834b35d7493354723543b28cc11dc14d1ce19b685f6e68e07c05ec7", size = 10840721 },
220
+ { url = "https://files.pythonhosted.org/packages/50/44/fead822c38281ba0122f1b76b460488a175a9bd48b130650a6fb6dbcbcf9/ruff-0.9.9-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5ee162652869120ad260670706f3cd36cd3f32b0c651f02b6da142652c54941d", size = 10161439 },
221
+ { url = "https://files.pythonhosted.org/packages/11/ae/d404a2ab8e61ddf6342e09cc6b7f7846cce6b243e45c2007dbe0ca928a5d/ruff-0.9.9-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3aa0f6b75082c9be1ec5a1db78c6d4b02e2375c3068438241dc19c7c306cc61a", size = 10336264 },
222
+ { url = "https://files.pythonhosted.org/packages/6a/4e/7c268aa7d84cd709fb6f046b8972313142cffb40dfff1d2515c5e6288d54/ruff-0.9.9-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:584cc66e89fb5f80f84b05133dd677a17cdd86901d6479712c96597a3f28e7fe", size = 9908774 },
223
+ { url = "https://files.pythonhosted.org/packages/cc/26/c618a878367ef1b76270fd027ca93692657d3f6122b84ba48911ef5f2edc/ruff-0.9.9-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abf3369325761a35aba75cd5c55ba1b5eb17d772f12ab168fbfac54be85cf18c", size = 11428127 },
224
+ { url = "https://files.pythonhosted.org/packages/d7/9a/c5588a93d9bfed29f565baf193fe802fa676a0c837938137ea6cf0576d8c/ruff-0.9.9-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3403a53a32a90ce929aa2f758542aca9234befa133e29f4933dcef28a24317be", size = 12133187 },
225
+ { url = "https://files.pythonhosted.org/packages/3e/ff/e7980a7704a60905ed7e156a8d73f604c846d9bd87deda9cabfa6cba073a/ruff-0.9.9-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:18454e7fa4e4d72cffe28a37cf6a73cb2594f81ec9f4eca31a0aaa9ccdfb1590", size = 11602937 },
226
+ { url = "https://files.pythonhosted.org/packages/24/78/3690444ad9e3cab5c11abe56554c35f005b51d1d118b429765249095269f/ruff-0.9.9-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fadfe2c88724c9617339f62319ed40dcdadadf2888d5afb88bf3adee7b35bfb", size = 13771698 },
227
+ { url = "https://files.pythonhosted.org/packages/6e/bf/e477c2faf86abe3988e0b5fd22a7f3520e820b2ee335131aca2e16120038/ruff-0.9.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6df104d08c442a1aabcfd254279b8cc1e2cbf41a605aa3e26610ba1ec4acf0b0", size = 11249026 },
228
+ { url = "https://files.pythonhosted.org/packages/f7/82/cdaffd59e5a8cb5b14c408c73d7a555a577cf6645faaf83e52fe99521715/ruff-0.9.9-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:d7c62939daf5b2a15af48abbd23bea1efdd38c312d6e7c4cedf5a24e03207e17", size = 10220432 },
229
+ { url = "https://files.pythonhosted.org/packages/fe/a4/2507d0026225efa5d4412b6e294dfe54725a78652a5c7e29e6bd0fc492f3/ruff-0.9.9-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:9494ba82a37a4b81b6a798076e4a3251c13243fc37967e998efe4cce58c8a8d1", size = 9874602 },
230
+ { url = "https://files.pythonhosted.org/packages/d5/be/f3aab1813846b476c4bcffe052d232244979c3cd99d751c17afb530ca8e4/ruff-0.9.9-py3-none-musllinux_1_2_i686.whl", hash = "sha256:4efd7a96ed6d36ef011ae798bf794c5501a514be369296c672dab7921087fa57", size = 10851212 },
231
+ { url = "https://files.pythonhosted.org/packages/8b/45/8e5fd559bea0d2f57c4e12bf197a2fade2fac465aa518284f157dfbca92b/ruff-0.9.9-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:ab90a7944c5a1296f3ecb08d1cbf8c2da34c7e68114b1271a431a3ad30cb660e", size = 11327490 },
232
+ { url = "https://files.pythonhosted.org/packages/42/55/e6c90f13880aeef327746052907e7e930681f26a164fe130ddac28b08269/ruff-0.9.9-py3-none-win32.whl", hash = "sha256:6b4c376d929c25ecd6d87e182a230fa4377b8e5125a4ff52d506ee8c087153c1", size = 10227912 },
233
+ { url = "https://files.pythonhosted.org/packages/35/b2/da925693cb82a1208aa34966c0f36cb222baca94e729dd22a587bc22d0f3/ruff-0.9.9-py3-none-win_amd64.whl", hash = "sha256:837982ea24091d4c1700ddb2f63b7070e5baec508e43b01de013dc7eff974ff1", size = 11355632 },
234
+ { url = "https://files.pythonhosted.org/packages/31/d8/de873d1c1b020d668d8ec9855d390764cb90cf8f6486c0983da52be8b7b7/ruff-0.9.9-py3-none-win_arm64.whl", hash = "sha256:3ac78f127517209fe6d96ab00f3ba97cafe38718b23b1db3e96d8b2d39e37ddf", size = 10435860 },
235
+ ]
236
+
237
+ [[package]]
238
+ name = "sentry-sdk"
239
+ version = "2.22.0"
240
+ source = { registry = "https://pypi.org/simple" }
241
+ dependencies = [
242
+ { name = "certifi" },
243
+ { name = "urllib3" },
244
+ ]
245
+ sdist = { url = "https://files.pythonhosted.org/packages/81/b6/662988ecd2345bf6c3a5c306a9a3590852742eff91d0a78a143398b816f3/sentry_sdk-2.22.0.tar.gz", hash = "sha256:b4bf43bb38f547c84b2eadcefbe389b36ef75f3f38253d7a74d6b928c07ae944", size = 303539 }
246
+ wheels = [
247
+ { url = "https://files.pythonhosted.org/packages/12/7f/0e4459173e9671ba5f75a48dda2442bcc48a12c79e54e5789381c8c6a9bc/sentry_sdk-2.22.0-py2.py3-none-any.whl", hash = "sha256:3d791d631a6c97aad4da7074081a57073126c69487560c6f8bffcf586461de66", size = 325815 },
248
+ ]
249
+
250
+ [[package]]
251
+ name = "urllib3"
252
+ version = "2.3.0"
253
+ source = { registry = "https://pypi.org/simple" }
254
+ sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 }
255
+ wheels = [
256
+ { url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 },
257
+ ]
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: plainx-sentry
3
- Version: 0.1.0
4
- Summary:
5
- Author: Dave Gaeddert
6
- Author-email: dave.gaeddert@dropseed.dev
7
- Requires-Python: >=3.11,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.11
10
- Classifier: Programming Language :: Python :: 3.12
11
- Requires-Dist: sentry-sdk (>=1.8.0,<2.0.0)
@@ -1,22 +0,0 @@
1
- [tool.poetry]
2
- name = "plainx-sentry"
3
- packages = [
4
- { include = "plainx" },
5
- ]
6
-
7
- version = "0.1.0"
8
- description = ""
9
- authors = ["Dave Gaeddert <dave.gaeddert@dropseed.dev>"]
10
-
11
- [tool.poetry.dependencies]
12
- python = "^3.11"
13
- sentry-sdk = "^1.8.0"
14
-
15
- [tool.poetry.dev-dependencies]
16
- plainframework = "<1.0.0"
17
- "plain.pytest" = "<1.0.0"
18
- "plain.code" = "<1.0.0"
19
-
20
- [build-system]
21
- requires = ["poetry-core>=1.0.0"]
22
- build-backend = "poetry.core.masonry.api"