From d71eb846116d2f7ba4fb3f5e50a539e1c5cb31ff Mon Sep 17 00:00:00 2001 From: BarsTiger Date: Sat, 7 Oct 2023 20:29:04 +0300 Subject: [PATCH] Initial commit --- .gitignore | 8 ++++++++ README.md | 1 + anymusicbot/__init__.py | 1 + config.toml.example | 14 ++++++++++++++ pyproject.toml | 14 ++++++++++++++ 5 files changed, 38 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 anymusicbot/__init__.py create mode 100644 config.toml.example create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c46121f --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +/.idea/ +/tests/ + +poetry.lock +config.toml +db +dbb +dbmeta diff --git a/README.md b/README.md new file mode 100644 index 0000000..7feb01a --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# 🎵 AnyMusicBot \ No newline at end of file diff --git a/anymusicbot/__init__.py b/anymusicbot/__init__.py new file mode 100644 index 0000000..2ae2839 --- /dev/null +++ b/anymusicbot/__init__.py @@ -0,0 +1 @@ +pass diff --git a/config.toml.example b/config.toml.example new file mode 100644 index 0000000..baddf2e --- /dev/null +++ b/config.toml.example @@ -0,0 +1,14 @@ +[telegram] +bot_token = '' +db_chat = 0 +admin_id = 0 + +[local] +db_path = 'db/' + +[tokens.spotify] +client_id = '' +client_secret = '' + +[tokens.deezer] +arl = '' diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..aad5af7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "anymusicbot" +version = "0.1.0" +description = "" +authors = ["BarsTiger"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"