initial commit
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/.env
|
||||
/__pycache__/
|
0
.projectile
Normal file
0
.projectile
Normal file
6
requirements.txt
Normal file
6
requirements.txt
Normal file
@ -0,0 +1,6 @@
|
||||
python-dotenv
|
||||
rich
|
||||
discord.py
|
||||
beautifulsoup4
|
||||
selenium
|
||||
pynacl
|
37
shell.nix
Normal file
37
shell.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
let myPython = python39.buildEnv.override {
|
||||
extraLibs = with python39Packages; [
|
||||
# Common Libs
|
||||
rich
|
||||
numpy
|
||||
matplotlib
|
||||
# scipy
|
||||
# torch
|
||||
|
||||
# Doom Emacs Libs
|
||||
black
|
||||
pyflakes
|
||||
isort
|
||||
nose
|
||||
pytest
|
||||
|
||||
# For Discord-Bot
|
||||
python-dotenv # Env
|
||||
discordpy # Discord
|
||||
pynacl # Voice
|
||||
];
|
||||
};
|
||||
in
|
||||
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
myPython
|
||||
nodePackages.pyright # LSP
|
||||
pipenv # Doom
|
||||
|
||||
ffmpeg # Voice
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user