mirror of https://codeberg.org/soteria/sox.git
chore: add pyteria and bump py version
This commit is contained in:
parent
0da1b23eed
commit
5b9a8baa9b
|
|
@ -386,6 +386,26 @@ files = [
|
|||
{file = "multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "pyteria"
|
||||
version = "0.1.0"
|
||||
description = "A Python API library for Soteria, world's safest Twitter."
|
||||
optional = false
|
||||
python-versions = ">3.9"
|
||||
files = []
|
||||
develop = false
|
||||
|
||||
[package.dependencies]
|
||||
aiohttp = ">=3.9.5"
|
||||
attrs = ">=24.2.0"
|
||||
typing-extensions = ">=4.12.2"
|
||||
|
||||
[package.source]
|
||||
type = "git"
|
||||
url = "https://codeberg.org/soteria/pyteria.git"
|
||||
reference = "HEAD"
|
||||
resolved_reference = "3f646cade13244da438df8747cb8e48c21c7c201"
|
||||
|
||||
[[package]]
|
||||
name = "python-dotenv"
|
||||
version = "1.0.1"
|
||||
|
|
@ -427,6 +447,17 @@ files = [
|
|||
{file = "ruff-0.5.6.tar.gz", hash = "sha256:07c9e3c2a8e1fe377dd460371c3462671a728c981c3205a5217291422209f642"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "typing-extensions"
|
||||
version = "4.12.2"
|
||||
description = "Backported and Experimental Type Hints for Python 3.8+"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"},
|
||||
{file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "yarl"
|
||||
version = "1.9.4"
|
||||
|
|
@ -532,5 +563,5 @@ multidict = ">=4.0"
|
|||
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.9"
|
||||
content-hash = "a9928b8822880a753b7c47095109e288147fc7146210e0d0ba80d3499ec362f0"
|
||||
python-versions = ">3.9,<4.0"
|
||||
content-hash = "ef77a644b21845aaa241055f599a064d52824c14a1bbf88f7e93b34f2822cb67"
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@ readme = "README.md"
|
|||
package-mode = false
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.9"
|
||||
python = ">3.9,<4.0"
|
||||
disnake = "^2.9.2"
|
||||
ruff = "^0.5.6"
|
||||
disnake-ext-plugins = {git = "https://github.com/DisnakeCommunity/disnake-ext-plugins"}
|
||||
python-dotenv = "^1.0.1"
|
||||
pyteria = {git = "https://codeberg.org/soteria/pyteria.git"}
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue