fix: remove .replit and replit.nix files (#22)

This commit is contained in:
Kristofer Koishigawa 2022-12-03 11:06:05 +09:00 committed by GitHub
parent 988c0755a1
commit 0266e8f8f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 22 deletions

View File

@ -1,2 +0,0 @@
language = "python3"
run = "python main.py"

View File

@ -1,20 +0,0 @@
{ pkgs }: {
deps = [
pkgs.python38Full
pkgs.python38Packages.pandas
pkgs.python38Packages.seaborn
];
env = {
PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
# Needed for pandas / numpy
pkgs.stdenv.cc.cc.lib
pkgs.zlib
# Needed for pygame
pkgs.glib
# Needed for matplotlib
pkgs.xorg.libX11
];
PYTHONBIN = "${pkgs.python38Full}/bin/python3.8";
LANG = "en_US.UTF-8";
};
}