From 95942e4a8a7fd2ce2c73798d410cd12a103073c4 Mon Sep 17 00:00:00 2001 From: BarsTiger Date: Sat, 7 Oct 2023 20:53:43 +0300 Subject: [PATCH] Updated readme and gitignore --- .gitignore | 6 +++--- README.md | 2 +- anymusicbot/__main__.py | 0 db/.gitkeep | 0 pyproject.toml | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 anymusicbot/__main__.py create mode 100644 db/.gitkeep diff --git a/.gitignore b/.gitignore index c46121f..4d20a63 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,6 @@ poetry.lock config.toml -db -dbb -dbmeta + +db/* +!db/.gitkeep diff --git a/README.md b/README.md index 7feb01a..49b12c2 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# 🎵 AnyMusicBot \ No newline at end of file +# 🎵 AnyMusicBot diff --git a/anymusicbot/__main__.py b/anymusicbot/__main__.py new file mode 100644 index 0000000..e69de29 diff --git a/db/.gitkeep b/db/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml index aad5af7..0e9465d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.11" +aiogram = "^3.1.1" [build-system]