1
0

Poetry setup

This commit is contained in:
2025-09-30 15:26:27 -04:00
parent e3c4e7c74e
commit e720ac7fe9
2 changed files with 56 additions and 0 deletions

34
poetry.lock generated Normal file
View File

@@ -0,0 +1,34 @@
# This file is automatically @generated by Poetry 2.1.4 and should not be changed by hand.
[[package]]
name = "rel"
version = "0.4.9.21"
description = "Registered Event Listener. Provides standard (pyevent) interface and functionality without external dependencies"
optional = false
python-versions = "*"
groups = ["main"]
files = [
{file = "rel-0.4.9.21-py3-none-any.whl", hash = "sha256:8fe2a0be9a5c1f72cad7a5a908f2241985f81f9f5c4a9b9de09068d7cc77a316"},
]
[[package]]
name = "websocket-client"
version = "1.8.0"
description = "WebSocket client for Python with low level API options"
optional = false
python-versions = ">=3.8"
groups = ["main"]
files = [
{file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"},
{file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"},
]
[package.extras]
docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"]
optional = ["python-socks", "wsaccel"]
test = ["websockets"]
[metadata]
lock-version = "2.1"
python-versions = ">=3.13"
content-hash = "6c1a29fff5885b0314a617154c590e6695b6e3dcde83268ec426427b3d2e9757"

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "cvm-sentry"
version = "0.1.0"
description = ""
authors = [
{name = "Clair Delafuente",email = "clair@nixlabs.dev"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"rel (>=0.4.9.21,<0.5.0.0)",
"websocket-client (>=1.8.0,<2.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false