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

main
Kristofer Koishigawa 1 year ago committed by GitHub
parent a8f010243f
commit d0b37c6542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -1,19 +0,0 @@
{ pkgs }: {
deps = [
pkgs.python38Full
pkgs.python38Packages.pandas
];
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";
};
}
Loading…
Cancel
Save