35 lines
647 B
TOML
35 lines
647 B
TOML
[project]
|
|
name="ahserver"
|
|
version = "1.0.1"
|
|
description = "A application server base on aiohttp"
|
|
authors = [{ name = "yu moqing", email = "yumoqing@gmail.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
dependencies = [
|
|
"asyncio",
|
|
"aiofiles",
|
|
"aiodns",
|
|
"aiohttp==3.10.10",
|
|
"aiohttp_session",
|
|
"aiohttp_auth_autz",
|
|
"aiohttp-cors",
|
|
"aiomysql",
|
|
"aioredis",
|
|
"psycopg2-binary",
|
|
"aiopg",
|
|
"jinja2",
|
|
"ujson",
|
|
"openpyxl",
|
|
"pillow",
|
|
"py-natpmp",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest", "black", "mypy"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|