From d83e8365c97422c8573af5d51cd82bd3d2614321 Mon Sep 17 00:00:00 2001 From: neha629-collab Date: Sun, 4 Jan 2026 03:07:25 +0000 Subject: [PATCH 1/2] Add pyproject.toml for project configuration --- pyproject.toml | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f6ce587 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,51 @@ +[project] +name = "a360api" +version = "1.0.0" +description = "Async FastAPI-based API backend" +readme = "README.md" +requires-python = ">=3.11" + +dependencies = [ +    "fastapi", +    "uvicorn", + +    "motor", +    "telethon", +    "pyrofork", +    "tgcrypto", +    "cryptg", + +    "aiohttp<3.13", +    "requests", +    "cloudscraper", + +    "pytz", +    "python-dateutil", +    "pycountry", + +    "pydantic<2.0", + +    "beautifulsoup4", +    "googletrans", + +    "pillow", +    "brotli", +    "zstandard", + +    "smartfaker", +    "smartbindb", + +    "py-yt-search==0.2" +] + +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.packages.find] +where = ["."] +include = ["*"] +exclude = ["templates*", "static*", "assets*", "frontend*"] From 3b0a0e6d1a9e82e0b814a02f5a8f2d617ab876b0 Mon Sep 17 00:00:00 2001 From: neha629-collab Date: Sun, 4 Jan 2026 03:09:03 +0000 Subject: [PATCH 2/2] Delete pyproject.toml --- pyproject.toml | 51 -------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index f6ce587..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,51 +0,0 @@ -[project] -name = "a360api" -version = "1.0.0" -description = "Async FastAPI-based API backend" -readme = "README.md" -requires-python = ">=3.11" - -dependencies = [ -    "fastapi", -    "uvicorn", - -    "motor", -    "telethon", -    "pyrofork", -    "tgcrypto", -    "cryptg", - -    "aiohttp<3.13", -    "requests", -    "cloudscraper", - -    "pytz", -    "python-dateutil", -    "pycountry", - -    "pydantic<2.0", - -    "beautifulsoup4", -    "googletrans", - -    "pillow", -    "brotli", -    "zstandard", - -    "smartfaker", -    "smartbindb", - -    "py-yt-search==0.2" -] - -[build-system] -requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" - -[tool.setuptools] -include-package-data = true - -[tool.setuptools.packages.find] -where = ["."] -include = ["*"] -exclude = ["templates*", "static*", "assets*", "frontend*"]