24 lines
492 B
TOML
24 lines
492 B
TOML
[project]
|
|
name="sqlor"
|
|
version = "1.0.1"
|
|
description = "a wrap for DBAPI, to make python run sql easy and safe"
|
|
authors = [{ name = "yu moqing", email = "yumoqing@gmail.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
dependencies = [
|
|
"aiomysql",
|
|
"PyMySQL",
|
|
"aiosqlite",
|
|
"asyncio",
|
|
"jinja2"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest", "black", "mypy"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|