suou/pyproject.toml

45 lines
873 B
TOML
Raw Normal View History

2025-05-23 21:23:54 +02:00
[project]
name = "sakuragasaki46_suou"
authors = [
{ name = "Sakuragasaki46" }
]
dynamic = [ "version" ]
dependencies = [
2025-05-26 17:44:34 +02:00
"itsdangerous",
"toml"
2025-05-23 21:23:54 +02:00
]
requires-python = ">=3.10"
license = "Apache-2.0"
# - publishing -
classifiers = [
"Private :: X",
"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]
sqlalchemy = [
"SQLAlchemy>=2.0.0"
]
flask = [
"Flask>=2.0.0",
"Flask-RestX"
]
peewee = [
"peewee>=3.0.0, <4.0"
]
[tool.setuptools.dynamic]
version = { attr = "suou.__version__" }