plainx-sentry 0.1.0__tar.gz → 0.2.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.
- plainx_sentry-0.2.0/.gitignore +16 -0
- plainx_sentry-0.2.0/PKG-INFO +76 -0
- plainx_sentry-0.2.0/README.md +68 -0
- plainx_sentry-0.1.0/plainx/sentry/jinja.py → plainx_sentry-0.2.0/plainx/sentry/templates.py +3 -6
- plainx_sentry-0.2.0/pyproject.toml +27 -0
- plainx_sentry-0.2.0/scripts/install +2 -0
- plainx_sentry-0.2.0/scripts/test +2 -0
- plainx_sentry-0.2.0/tests/settings.py +34 -0
- plainx_sentry-0.2.0/tests/templates/index.html +13 -0
- plainx_sentry-0.2.0/tests/test_sentry.py +137 -0
- plainx_sentry-0.2.0/tests/urls.py +15 -0
- plainx_sentry-0.2.0/uv.lock +255 -0
- plainx_sentry-0.1.0/PKG-INFO +0 -11
- plainx_sentry-0.1.0/pyproject.toml +0 -22
- {plainx_sentry-0.1.0 → plainx_sentry-0.2.0}/plainx/sentry/__init__.py +0 -0
- {plainx_sentry-0.1.0 → plainx_sentry-0.2.0}/plainx/sentry/config.py +0 -0
- {plainx_sentry-0.1.0 → plainx_sentry-0.2.0}/plainx/sentry/default_settings.py +0 -0
- {plainx_sentry-0.1.0 → plainx_sentry-0.2.0}/plainx/sentry/middleware.py +0 -0
- {plainx_sentry-0.1.0 → plainx_sentry-0.2.0}/plainx/sentry/templates/sentry/js.html +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: plainx-sentry
|
|
3
|
+
Version: 0.2.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
|
+

|
|
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
|
+

|
|
@@ -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
|
+

|
|
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
|
+

|
|
@@ -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.2.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,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,255 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
requires-python = ">=3.11"
|
|
3
|
+
|
|
4
|
+
[[package]]
|
|
5
|
+
name = "certifi"
|
|
6
|
+
version = "2024.8.30"
|
|
7
|
+
source = { registry = "https://pypi.org/simple" }
|
|
8
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1/certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9", size = 168507 }
|
|
9
|
+
wheels = [
|
|
10
|
+
{ url = "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", size = 167321 },
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[[package]]
|
|
14
|
+
name = "click"
|
|
15
|
+
version = "8.1.7"
|
|
16
|
+
source = { registry = "https://pypi.org/simple" }
|
|
17
|
+
dependencies = [
|
|
18
|
+
{ name = "colorama", marker = "platform_system == 'Windows'" },
|
|
19
|
+
]
|
|
20
|
+
sdist = { url = "https://files.pythonhosted.org/packages/96/d3/f04c7bfcf5c1862a2a5b845c6b2b360488cf47af55dfa79c98f6a6bf98b5/click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de", size = 336121 }
|
|
21
|
+
wheels = [
|
|
22
|
+
{ url = "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", size = 97941 },
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "colorama"
|
|
27
|
+
version = "0.4.6"
|
|
28
|
+
source = { registry = "https://pypi.org/simple" }
|
|
29
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 }
|
|
30
|
+
wheels = [
|
|
31
|
+
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 },
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "iniconfig"
|
|
36
|
+
version = "2.0.0"
|
|
37
|
+
source = { registry = "https://pypi.org/simple" }
|
|
38
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 }
|
|
39
|
+
wheels = [
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "jinja2"
|
|
45
|
+
version = "3.1.4"
|
|
46
|
+
source = { registry = "https://pypi.org/simple" }
|
|
47
|
+
dependencies = [
|
|
48
|
+
{ name = "markupsafe" },
|
|
49
|
+
]
|
|
50
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ed/55/39036716d19cab0747a5020fc7e907f362fbf48c984b14e62127f7e68e5d/jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369", size = 240245 }
|
|
51
|
+
wheels = [
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 },
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "markupsafe"
|
|
57
|
+
version = "3.0.2"
|
|
58
|
+
source = { registry = "https://pypi.org/simple" }
|
|
59
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 }
|
|
60
|
+
wheels = [
|
|
61
|
+
{ 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 },
|
|
62
|
+
{ 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 },
|
|
63
|
+
{ 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 },
|
|
64
|
+
{ 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 },
|
|
65
|
+
{ 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 },
|
|
66
|
+
{ 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 },
|
|
67
|
+
{ 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 },
|
|
68
|
+
{ 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 },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 },
|
|
71
|
+
{ 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 },
|
|
72
|
+
{ 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 },
|
|
73
|
+
{ 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 },
|
|
74
|
+
{ 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 },
|
|
75
|
+
{ 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 },
|
|
76
|
+
{ 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 },
|
|
77
|
+
{ 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 },
|
|
78
|
+
{ 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 },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 },
|
|
81
|
+
{ 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 },
|
|
82
|
+
{ 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 },
|
|
83
|
+
{ 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 },
|
|
84
|
+
{ 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 },
|
|
85
|
+
{ 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 },
|
|
86
|
+
{ 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 },
|
|
87
|
+
{ 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 },
|
|
88
|
+
{ 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 },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 },
|
|
91
|
+
{ 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 },
|
|
92
|
+
{ 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 },
|
|
93
|
+
{ 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 },
|
|
94
|
+
{ 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 },
|
|
95
|
+
{ 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 },
|
|
96
|
+
{ 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 },
|
|
97
|
+
{ 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 },
|
|
98
|
+
{ 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 },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 },
|
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 },
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "packaging"
|
|
105
|
+
version = "24.2"
|
|
106
|
+
source = { registry = "https://pypi.org/simple" }
|
|
107
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
|
|
108
|
+
wheels = [
|
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "plain"
|
|
114
|
+
version = "0.13.0"
|
|
115
|
+
source = { registry = "https://pypi.org/simple" }
|
|
116
|
+
dependencies = [
|
|
117
|
+
{ name = "click" },
|
|
118
|
+
{ name = "jinja2" },
|
|
119
|
+
]
|
|
120
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e6/c4/0d7a6565e50f140c8871dbf1aa3c87bc4963f9fdd212ae69be37edccae2c/plain-0.13.0.tar.gz", hash = "sha256:e9be871e37d1e7aa87cb2524fe063d653158537b451ba404a6bb0989d5fb279e", size = 178790 }
|
|
121
|
+
wheels = [
|
|
122
|
+
{ url = "https://files.pythonhosted.org/packages/f7/73/0cce30e6e82d6ea0ef9ecc16457645cf32eb3c872dd8a53383a01926dbbe/plain-0.13.0-py3-none-any.whl", hash = "sha256:0ccb61f1a1a35d585b41c0c9cefe4cc8067f6b162a715904898ed076906f80fa", size = 221912 },
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "plain-code"
|
|
127
|
+
version = "0.3.0"
|
|
128
|
+
source = { registry = "https://pypi.org/simple" }
|
|
129
|
+
dependencies = [
|
|
130
|
+
{ name = "plain" },
|
|
131
|
+
{ name = "ruff" },
|
|
132
|
+
]
|
|
133
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1c/4d/b23a37ebc5175d1e4ace2186a4dc85f9754b85e448648d9149fdc0efe923/plain_code-0.3.0.tar.gz", hash = "sha256:e47a5f94aa0300e1b4edc284e2a4b8de9eb03ef04b04a7bbe7a284fe248156d4", size = 2654 }
|
|
134
|
+
wheels = [
|
|
135
|
+
{ url = "https://files.pythonhosted.org/packages/c5/69/2b6c3c030071e74e75b4eee289069126bb5ecaa68b1daa356e69b2935704/plain_code-0.3.0-py3-none-any.whl", hash = "sha256:1017451556b085151a19c54a2e87d601b86d7838c3a98f45b140691cca6c8b68", size = 3801 },
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "plain-pytest"
|
|
140
|
+
version = "0.3.0"
|
|
141
|
+
source = { registry = "https://pypi.org/simple" }
|
|
142
|
+
dependencies = [
|
|
143
|
+
{ name = "click" },
|
|
144
|
+
{ name = "plain" },
|
|
145
|
+
{ name = "pytest" },
|
|
146
|
+
{ name = "python-dotenv" },
|
|
147
|
+
]
|
|
148
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ac/b4/59879098dbc88e8ac3b87cf2d96e8be2ea218556c144352e1941b3fca774/plain_pytest-0.3.0.tar.gz", hash = "sha256:416ae2ef3b8902546198affe5e3c2642bc0878ec218ee268bb4c8421c67c62e4", size = 3130 }
|
|
149
|
+
wheels = [
|
|
150
|
+
{ url = "https://files.pythonhosted.org/packages/a5/ca/ebb8758106157a83790d259e93d0cfefda6df8488b658eb8876b12600872/plain_pytest-0.3.0-py3-none-any.whl", hash = "sha256:e9c1ea1f223a6817d8b5b1da8cc61a819cf578a26787e506052a117600291aef", size = 4488 },
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "plainx-sentry"
|
|
155
|
+
version = "0.2.0"
|
|
156
|
+
source = { editable = "." }
|
|
157
|
+
dependencies = [
|
|
158
|
+
{ name = "sentry-sdk" },
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[package.dev-dependencies]
|
|
162
|
+
dev = [
|
|
163
|
+
{ name = "plain" },
|
|
164
|
+
{ name = "plain-code" },
|
|
165
|
+
{ name = "plain-pytest" },
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[package.metadata]
|
|
169
|
+
requires-dist = [{ name = "sentry-sdk", specifier = ">=1.8.0" }]
|
|
170
|
+
|
|
171
|
+
[package.metadata.requires-dev]
|
|
172
|
+
dev = [
|
|
173
|
+
{ name = "plain", specifier = "<1.0.0" },
|
|
174
|
+
{ name = "plain-code", specifier = "<1.0.0" },
|
|
175
|
+
{ name = "plain-pytest", specifier = "<1.0.0" },
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "pluggy"
|
|
180
|
+
version = "1.5.0"
|
|
181
|
+
source = { registry = "https://pypi.org/simple" }
|
|
182
|
+
sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 }
|
|
183
|
+
wheels = [
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 },
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "pytest"
|
|
189
|
+
version = "8.3.3"
|
|
190
|
+
source = { registry = "https://pypi.org/simple" }
|
|
191
|
+
dependencies = [
|
|
192
|
+
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
|
193
|
+
{ name = "iniconfig" },
|
|
194
|
+
{ name = "packaging" },
|
|
195
|
+
{ name = "pluggy" },
|
|
196
|
+
]
|
|
197
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8b/6c/62bbd536103af674e227c41a8f3dcd022d591f6eed5facb5a0f31ee33bbc/pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181", size = 1442487 }
|
|
198
|
+
wheels = [
|
|
199
|
+
{ url = "https://files.pythonhosted.org/packages/6b/77/7440a06a8ead44c7757a64362dd22df5760f9b12dc5f11b6188cd2fc27a0/pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2", size = 342341 },
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "python-dotenv"
|
|
204
|
+
version = "1.0.1"
|
|
205
|
+
source = { registry = "https://pypi.org/simple" }
|
|
206
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115 }
|
|
207
|
+
wheels = [
|
|
208
|
+
{ url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 },
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "ruff"
|
|
213
|
+
version = "0.1.15"
|
|
214
|
+
source = { registry = "https://pypi.org/simple" }
|
|
215
|
+
sdist = { url = "https://files.pythonhosted.org/packages/42/33/7165f88a156be1c2fd13a18b3af6e75bbf82da5b6978cd2128d666accc18/ruff-0.1.15.tar.gz", hash = "sha256:f6dfa8c1b21c913c326919056c390966648b680966febcb796cc9d1aaab8564e", size = 1971643 }
|
|
216
|
+
wheels = [
|
|
217
|
+
{ url = "https://files.pythonhosted.org/packages/11/2c/fac0658910ea3ea87a23583e58277533154261b73f9460388eb2e6e02e8f/ruff-0.1.15-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:5fe8d54df166ecc24106db7dd6a68d44852d14eb0729ea4672bb4d96c320b7df", size = 14357437 },
|
|
218
|
+
{ url = "https://files.pythonhosted.org/packages/5b/c1/2116927385c761ffb786dfb77654a634ecd7803dee4de3b47b59536374f1/ruff-0.1.15-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6f0bfbb53c4b4de117ac4d6ddfd33aa5fc31beeaa21d23c45c6dd249faf9126f", size = 7329669 },
|
|
219
|
+
{ url = "https://files.pythonhosted.org/packages/18/d7/2199ecb42cef4d70de0e72ce4ca8878d060e25fe4434cb66f51e26158a2a/ruff-0.1.15-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0d432aec35bfc0d800d4f70eba26e23a352386be3a6cf157083d18f6f5881c8", size = 7137343 },
|
|
220
|
+
{ url = "https://files.pythonhosted.org/packages/bb/e0/8a6f9db2c5b8c7108c7e7347cd6beca805d1b2ae618569c72f2515d11e52/ruff-0.1.15-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9405fa9ac0e97f35aaddf185a1be194a589424b8713e3b97b762336ec79ff807", size = 6563223 },
|
|
221
|
+
{ url = "https://files.pythonhosted.org/packages/98/fa/2a627747a5a5f7e1d3447704f795fd35d486460838485762cd569ef8eb0e/ruff-0.1.15-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c66ec24fe36841636e814b8f90f572a8c0cb0e54d8b5c2d0e300d28a0d7bffec", size = 7534853 },
|
|
222
|
+
{ url = "https://files.pythonhosted.org/packages/55/09/c09d0f9b41d1f5e3de117579f2fcdb7063fd76cd92d6614eae1b77ccbccb/ruff-0.1.15-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:6f8ad828f01e8dd32cc58bc28375150171d198491fc901f6f98d2a39ba8e3ff5", size = 8168826 },
|
|
223
|
+
{ url = "https://files.pythonhosted.org/packages/72/48/c9dfc2c87dc6b92446d8092c2be25b42ca4fb201cecb2499996ccf483c34/ruff-0.1.15-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86811954eec63e9ea162af0ffa9f8d09088bab51b7438e8b6488b9401863c25e", size = 7942963 },
|
|
224
|
+
{ url = "https://files.pythonhosted.org/packages/0c/57/dbc885f94450335fcff82301c4b25cf614894e79d9afbd249714e709ab42/ruff-0.1.15-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd4025ac5e87d9b80e1f300207eb2fd099ff8200fa2320d7dc066a3f4622dc6b", size = 8524998 },
|
|
225
|
+
{ url = "https://files.pythonhosted.org/packages/39/75/8dea2fc156ae525971fdada8723f78e605dcf89428f5686728438b12f9ef/ruff-0.1.15-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b17b93c02cdb6aeb696effecea1095ac93f3884a49a554a9afa76bb125c114c1", size = 7534144 },
|
|
226
|
+
{ url = "https://files.pythonhosted.org/packages/47/41/96b770475c46590bfd051ca0c5f797b2d45f2638c45f3a9daf1ae55b96d6/ruff-0.1.15-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:ddb87643be40f034e97e97f5bc2ef7ce39de20e34608f3f829db727a93fb82c5", size = 7055002 },
|
|
227
|
+
{ url = "https://files.pythonhosted.org/packages/e8/ca/4066dbcc3631a4efe1fe695f42f20aca50474d760b3bd8e57d7565d75aa5/ruff-0.1.15-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:abf4822129ed3a5ce54383d5f0e964e7fef74a41e48eb1dfad404151efc130a2", size = 6552130 },
|
|
228
|
+
{ url = "https://files.pythonhosted.org/packages/b8/85/da93f0fc8f2424cf776fcce6daef9291162345179d16faf1401ff2890068/ruff-0.1.15-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6c629cf64bacfd136c07c78ac10a54578ec9d1bd2a9d395efbee0935868bf852", size = 7214386 },
|
|
229
|
+
{ url = "https://files.pythonhosted.org/packages/e5/bf/de34ad339e0d1f6faa858cbcf793f3abc168b7aa516dd9227d843b992be8/ruff-0.1.15-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:1bab866aafb53da39c2cadfb8e1c4550ac5340bb40300083eb8967ba25481447", size = 7602787 },
|
|
230
|
+
{ url = "https://files.pythonhosted.org/packages/8d/61/ffdccecb0b39521d7060d6a6bc33c53d7f20d48d3511d6333cb01f26e979/ruff-0.1.15-py3-none-win32.whl", hash = "sha256:2417e1cb6e2068389b07e6fa74c306b2810fe3ee3476d5b8a96616633f40d14f", size = 6670488 },
|
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/2b/5f/3ba51cc770ed2b2df88efc32bba26759e6ac5c6149319a60913a85230936/ruff-0.1.15-py3-none-win_amd64.whl", hash = "sha256:3837ac73d869efc4182d9036b1405ef4c73d9b1f88da2413875e34e0d6919587", size = 7319395 },
|
|
232
|
+
{ url = "https://files.pythonhosted.org/packages/c9/bd/c196493563d6bf8fe960f10b83926a3fae3a43a96eac6b263aecb96c61d7/ruff-0.1.15-py3-none-win_arm64.whl", hash = "sha256:9a933dfb1c14ec7a33cceb1e49ec4a16b51ce3c20fd42663198746efc0427360", size = 6998592 },
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "sentry-sdk"
|
|
237
|
+
version = "2.18.0"
|
|
238
|
+
source = { registry = "https://pypi.org/simple" }
|
|
239
|
+
dependencies = [
|
|
240
|
+
{ name = "certifi" },
|
|
241
|
+
{ name = "urllib3" },
|
|
242
|
+
]
|
|
243
|
+
sdist = { url = "https://files.pythonhosted.org/packages/24/cc/0d87cc8246f52d92228aa6718a24e1988a2893f4abe2f64ec5a8bcba4185/sentry_sdk-2.18.0.tar.gz", hash = "sha256:0dc21febd1ab35c648391c664df96f5f79fb0d92d7d4225cd9832e53a617cafd", size = 293615 }
|
|
244
|
+
wheels = [
|
|
245
|
+
{ url = "https://files.pythonhosted.org/packages/76/9b/2d512efdb0de203d1f0312fae53433c3009ba70b0078421d25baaedc960a/sentry_sdk-2.18.0-py2.py3-none-any.whl", hash = "sha256:ee70e27d1bbe4cd52a38e1bd28a5fadb9b17bc29d91b5f2b97ae29c0a7610442", size = 317514 },
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "urllib3"
|
|
250
|
+
version = "2.2.3"
|
|
251
|
+
source = { registry = "https://pypi.org/simple" }
|
|
252
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", size = 300677 }
|
|
253
|
+
wheels = [
|
|
254
|
+
{ url = "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", size = 126338 },
|
|
255
|
+
]
|
plainx_sentry-0.1.0/PKG-INFO
DELETED
|
@@ -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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|