Initial commit
This commit is contained in:
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/.idea/
|
||||
/tests/
|
||||
|
||||
poetry.lock
|
||||
config.toml
|
||||
db
|
||||
dbb
|
||||
dbmeta
|
||||
1
anymusicbot/__init__.py
Normal file
1
anymusicbot/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
pass
|
||||
14
config.toml.example
Normal file
14
config.toml.example
Normal 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
14
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user