From a5a6f2eca9fdccaac4a4620f22c2730fc1507a83 Mon Sep 17 00:00:00 2001 From: MrKan Date: Wed, 25 Mar 2026 16:31:31 +0300 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ api/.python-version | 1 + api/README.md | 0 api/pyproject.toml | 7 +++++++ 4 files changed, 11 insertions(+) create mode 100644 api/.python-version create mode 100644 api/README.md create mode 100644 api/pyproject.toml diff --git a/.gitignore b/.gitignore index ab3e8ce..b9ea2e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# ---> PyCharm +.idea/ + # ---> Python # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/api/.python-version b/api/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/api/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/api/README.md b/api/README.md new file mode 100644 index 0000000..e69de29 diff --git a/api/pyproject.toml b/api/pyproject.toml new file mode 100644 index 0000000..766d844 --- /dev/null +++ b/api/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "api" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []