suou/pyproject.toml

87 lines
1.7 KiB
TOML
Raw Normal View History

2025-05-23 21:23:54 +02:00
[project]
2025-09-13 21:04:22 +02:00
name = "suou"
description = "casual utility library for coding QoL"
2025-05-23 21:23:54 +02:00
authors = [
{ name = "Sakuragasaki46" }
]
dynamic = [ "version" ]
requires-python = ">=3.10"
license = "Apache-2.0"
readme = "README.md"
2025-05-23 21:23:54 +02:00
dependencies = [
2025-05-26 17:44:34 +02:00
"itsdangerous",
"toml",
"pydantic",
2025-07-31 22:53:44 +02:00
"setuptools>=78.0.0",
"uvloop; os_name=='posix'"
2025-05-23 21:23:54 +02:00
]
# - further devdependencies below - #
2025-05-23 21:23:54 +02:00
# - 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",
"Programming Language :: Python :: 3.14"
2025-05-23 21:23:54 +02:00
]
[project.urls]
2025-09-13 21:04:22 +02:00
Repository = "https://nekode.yusur.moe/yusur/suou"
2025-10-11 11:07:50 +02:00
Documentation = "https://suou.readthedocs.io"
2025-05-23 21:23:54 +02:00
[project.optional-dependencies]
# the below are all dev dependencies (and probably already installed)
2025-05-23 21:23:54 +02:00
sqlalchemy = [
"SQLAlchemy[asyncio]>=2.0.0",
"flask-sqlalchemy"
2025-05-23 21:23:54 +02:00
]
flask = [
"Flask>=2.0.0",
2025-07-19 11:31:01 +02:00
"Flask-RestX"
2025-05-23 21:23:54 +02:00
]
flask_sqlalchemy = [
"suou[sqlalchemy]",
"suou[flask]"
]
2025-05-23 21:23:54 +02:00
peewee = [
2025-07-31 22:53:44 +02:00
## HEADS UP! peewee has setup.py, may slow down installation
"peewee>=3.0.0"
2025-05-23 21:23:54 +02:00
]
2025-06-11 14:38:22 +02:00
markdown = [
"markdown>=3.0.0"
]
2025-07-19 11:31:01 +02:00
quart = [
"Quart",
2025-07-31 22:53:44 +02:00
"Quart-Schema",
"starlette>=0.47.2"
]
2025-07-31 22:53:44 +02:00
sass = [
## HEADS UP!! libsass carries a C extension + uses setup.py
"libsass"
2025-07-19 11:31:01 +02:00
]
full = [
2025-09-13 21:04:22 +02:00
"suou[sqlalchemy]",
"suou[flask]",
"suou[quart]",
"suou[peewee]",
"suou[markdown]",
"suou[sass]"
2025-07-19 11:31:01 +02:00
]
docs = [
"sphinx>=2.1",
2025-10-10 20:24:38 +02:00
"myst_parser",
"sphinx_rtd_theme"
]
2025-05-23 21:23:54 +02:00
[tool.setuptools.dynamic]
version = { attr = "suou.__version__" }