Compare commits

..

2 commits

Author SHA1 Message Date
646ac2e1bf 0.7.0 "The Lucky Update" 2025-09-30 20:34:38 +02:00
9c0e889750 version advance 2025-09-30 20:09:21 +02:00
3 changed files with 75 additions and 4 deletions

1
.gitignore vendored
View file

@ -25,3 +25,4 @@ dist/
.vscode
/run.sh
ROADMAP.md
aliases/*/src

View file

@ -1,8 +1,78 @@
[project]
name = "sakuragasaki46_suou"
authors = [ { name = "Sakuragasaki46" } ]
version = "0.6.1"
description = "casual utility library for coding QoL"
authors = [
{ name = "Sakuragasaki46" }
]
dynamic = [ "version" ]
requires-python = ">=3.10"
dependencies = [ "suou==0.6.1" ]
license = "Apache-2.0"
readme = "README.md"
dependencies = [
"suou==0.7.0",
"itsdangerous",
"toml",
"pydantic",
"setuptools>=78.0.0",
"uvloop; os_name=='posix'"
]
# - further devdependencies below - #
# - publishing -
classifiers = [
"Development Status :: 2 - Pre-Alpha",
# actively supported Pythons
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[project.urls]
Repository = "https://nekode.yusur.moe/yusur/suou"
[project.optional-dependencies]
# the below are all dev dependencies (and probably already installed)
sqlalchemy = [
"SQLAlchemy[asyncio]>=2.0.0"
]
flask = [
"Flask>=2.0.0",
"Flask-RestX"
]
flask_sqlalchemy = [
"Flask-SqlAlchemy",
]
peewee = [
## HEADS UP! peewee has setup.py, may slow down installation
"peewee>=3.0.0"
]
markdown = [
"markdown>=3.0.0"
]
quart = [
"Quart",
"Quart-Schema",
"starlette>=0.47.2"
]
sass = [
## HEADS UP!! libsass carries a C extension + uses setup.py
"libsass"
]
full = [
"sakuragasaki46_suou[sqlalchemy]",
"sakuragasaki46_suou[flask]",
"sakuragasaki46_suou[quart]",
"sakuragasaki46_suou[peewee]",
"sakuragasaki46_suou[markdown]",
"sakuragasaki46_suou[flask-sqlalchemy]",
"sakuragasaki46_suou[sass]"
]
[tool.setuptools.dynamic]
version = { attr = "suou.__version__" }

View file

@ -37,7 +37,7 @@ from .redact import redact_url_password
from .http import WantsContentType
from .color import chalk
__version__ = "0.7.0-dev38"
__version__ = "0.7.0"
__all__ = (
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',