commit d737a62f487556931dd98b9f3a6142cf8deb9aba Author: trojvn Date: Tue Oct 8 13:00:15 2024 +0300 initial 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