initial commit

This commit is contained in:
ChUrl
2021-05-22 21:01:02 +02:00
commit 31f7b38f21
5 changed files with 46 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
eval "$(lorri direnv)"

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.env
/__pycache__/

0
.projectile Normal file
View File

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
python-dotenv
rich
discord.py
beautifulsoup4
selenium
pynacl

37
shell.nix Normal file
View 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
];
}