suou/pyproject.toml

53 lines
1 KiB
TOML
Raw Permalink Normal View History

2025-05-23 21:23:54 +02:00
[project]
name = "sakuragasaki46_suou"
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"
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"
]
[project.urls]
Repository = "https://github.com/sakuragasaki46/suou"
[project.optional-dependencies]
# the below are all dev dependencies (and probably already installed)
2025-05-23 21:23:54 +02:00
sqlalchemy = [
"SQLAlchemy>=2.0.0"
]
flask = [
"Flask>=2.0.0",
"Flask-RestX"
]
flask_sqlalchemy = [
"Flask-SqlAlchemy"
]
2025-05-23 21:23:54 +02:00
peewee = [
"peewee>=3.0.0, <4.0"
]
2025-06-11 14:38:22 +02:00
markdown = [
"markdown>=3.0.0"
]
2025-05-23 21:23:54 +02:00
[tool.setuptools.dynamic]
version = { attr = "suou.__version__" }