mirror of
https://github.com/supleed2/gondilinabot-python.git
synced 2024-12-22 13:35:48 +00:00
Project Setup
.gitignore: Virtual Env folder, Secrets File (eg. for bot token) .vscode/settings.json: venv python path requirements.txt: project dependencies
This commit is contained in:
parent
9377c0f0d2
commit
7672a21454
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,3 +1,7 @@
|
|||
# Project Specifics
|
||||
gondilinabot/
|
||||
secrets.yaml
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
|
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"python.pythonPath": "gondilinabot\\Scripts\\python.exe",
|
||||
}
|
19
requirements.txt
Normal file
19
requirements.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
aiohttp==3.7.4.post0
|
||||
async-timeout==3.0.1
|
||||
attrs==21.2.0
|
||||
black==21.10b0
|
||||
chardet==4.0.0
|
||||
click==8.0.3
|
||||
colorama==0.4.4
|
||||
discord==1.7.3
|
||||
discord.py==1.7.3
|
||||
idna==3.3
|
||||
multidict==5.2.0
|
||||
mypy-extensions==0.4.3
|
||||
pathspec==0.9.0
|
||||
platformdirs==2.4.0
|
||||
PyYAML==6.0
|
||||
regex==2021.11.2
|
||||
tomli==1.2.2
|
||||
typing-extensions==3.10.0.2
|
||||
yarl==1.7.2
|
Loading…
Reference in a new issue