From d737a62f487556931dd98b9f3a6142cf8deb9aba Mon Sep 17 00:00:00 2001 From: trojvn Date: Tue, 8 Oct 2024 13:00:15 +0300 Subject: [PATCH] initial --- .gitignore | 13 +++++++++++++ README.md | 0 basethon/__init__.py | 0 pyproject.toml | 14 ++++++++++++++ tests/__init__.py | 0 5 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 basethon/__init__.py create mode 100644 pyproject.toml create mode 100644 tests/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eec8aa9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +.env +.env.db +.venv +.idea +.ruff_cache +.pytest_cache +venv +data +logs +__pycache__ +.DS_Store +*.txt + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/basethon/__init__.py b/basethon/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0914374 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "basethon" +version = "0.1.0" +description = "" +authors = ["trojvn "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29