From 47c6035591092201e53599f779becd14905a749a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 24 May 2025 14:14:29 +0800 Subject: [PATCH] bugfix --- pyproject.toml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4e247e8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,34 @@ +[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" +