Initial commit

This commit is contained in:
BarsTiger
2023-10-07 20:29:04 +03:00
commit d71eb84611
5 changed files with 38 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
/.idea/
/tests/
poetry.lock
config.toml
db
dbb
dbmeta

1
README.md Normal file
View File

@@ -0,0 +1 @@
# 🎵 AnyMusicBot

1
anymusicbot/__init__.py Normal file
View File

@@ -0,0 +1 @@
pass

14
config.toml.example Normal file
View File

@@ -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 = ''

14
pyproject.toml Normal file
View File

@@ -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"