0.12.5 setuptools no more a dependency

This commit is contained in:
Yusur 2026-04-24 09:51:44 +02:00
parent 8b60c8d94a
commit e5a8c6bd61
4 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.12.5
+ Optimized dependencies: `setuptools` now no more a dependency
## 0.12.4 ## 0.12.4
+ Fix wrong imports in `sqlalchemy.quart` submodule + Fix wrong imports in `sqlalchemy.quart` submodule

View file

@ -3,7 +3,7 @@
Good morning, my brother! Welcome **SUOU** (**S**IS **U**nified **O**bject **U**nderarmor), the Python library which speeds up and makes it pleasing to develop API, database schemas and stuff in Python. Good morning, my brother! Welcome **SUOU** (**S**IS **U**nified **O**bject **U**nderarmor), the Python library which speeds up and makes it pleasing to develop API, database schemas and stuff in Python.
It provides utilities such as: It provides utilities such as:
* SIQ ([specification](https://yusur.moe/protocols/siq.html) - [copy](https://suou.readthedocs.io/en/latest/iding.html)) * SIQ ([specification](https://yusur.moe/protocols/siq.html) \[LINK BROKEN - WON'T FIX\] - [copy](https://suou.readthedocs.io/en/latest/iding.html))
* signing and generation of access tokens, on top of [ItsDangerous](https://github.com/pallets/itsdangerous) *not tested and not working* * signing and generation of access tokens, on top of [ItsDangerous](https://github.com/pallets/itsdangerous) *not tested and not working*
* helpers for use in Flask, [SQLAlchemy](https://suou.readthedocs.io/en/latest/sqlalchemy.html), and other popular frameworks * helpers for use in Flask, [SQLAlchemy](https://suou.readthedocs.io/en/latest/sqlalchemy.html), and other popular frameworks
* i forgor 💀 * i forgor 💀

View file

@ -13,7 +13,6 @@ dependencies = [
"itsdangerous", "itsdangerous",
"toml", "toml",
"pydantic", "pydantic",
"setuptools>=78.0.0",
"uvloop; os_name=='posix'" "uvloop; os_name=='posix'"
] ]
# - further devdependencies below - # # - further devdependencies below - #

View file

@ -38,7 +38,7 @@ from .http import WantsContentType
from .color import OKLabColor, chalk, WebColor, RGBColor, LinearRGBColor, XYZColor, OKLCHColor from .color import OKLabColor, chalk, WebColor, RGBColor, LinearRGBColor, XYZColor, OKLCHColor
from .mat import Matrix from .mat import Matrix
__version__ = "0.12.4" __version__ = "0.12.5"
__all__ = ( __all__ = (
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue', 'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',