From 2c0a46d0f7f7dec007dae6ef581d5b922b33587e Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 20 Jun 2025 17:26:37 +0800 Subject: [PATCH] bugfix --- pyproject.toml | 36 ------------------------------------ setup.cfg | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 36 deletions(-) create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 189041f..59514a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,39 +1,3 @@ -[project] -name="appPublic" -version = "5.2.3" -description = "Your project description" -authors = [{ name = "yu moqing", email = "yumoqing@gmail.com" }] -readme = "README.md" -requires-python = ">=3.8" -license = {text = "MIT"} -dependencies = [ - "xlrd", - "bs4", - "xlwt", - "nanoid", - "psutil", - "ujson", - "numpy", - "rsa", - "brotli", - "aiohttp", - # "upnpclient", - # "py-natpmp", - "asyncio ", - "aiohttp", - "aiohttp_socks", - "requests", - "jinja2", - "pyzmq", - "cryptography", - "bcrypt", - "asyncssh", - "eventpy" -] - -[project.optional-dependencies] -dev = ["pytest", "black", "mypy"] - [build-system] requires = ["setuptools>=61", "wheel"] build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..1610f93 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,34 @@ +[metadata] +name=appPublic +version = 5.2.3 +description = Your project description +authors = [{ +author = "yu moqing" +author_email = "yumoqing@gmail.com" }] +readme = "README.md" +license = "MIT" +[options] +packages = find: +requires-python = ">=3.8" +install_requires = + xlrd + bs4 + xlwt + nanoid + psutil + ujson + numpy + rsa + brotli + aiohttp + asyncio + aiohttp + aiohttp_socks + requests + jinja2 + pyzmq + cryptography + bcrypt + asyncssh + eventpy +