diff --git a/.replit b/.replit deleted file mode 100644 index ddce839..0000000 --- a/.replit +++ /dev/null @@ -1,19 +0,0 @@ -run = ["make", "test"] -language = "python3" -entrypoint = "main.py" -hidden = ["LICENSE", "venv", ".config", ".gitignore", "**/__pycache__", "**/.pytest_cache", "**/*.pyc"] - -[nix] -channel = "stable-21_11" - -[languages] - -[languages.python3] -pattern = "**/*.py" - -[languages.python3.languageServer] -start = "pylsp" - -[debugger] -support = false - diff --git a/README.md b/README.md index 539f72a..3d695b6 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,17 @@ # Bootstrap for Python coding kata [![CI](https://github.com/Coding-Cuddles/bootstrap-python-kata/actions/workflows/main.yml/badge.svg)](https://github.com/Coding-Cuddles/bootstrap-python-kata/actions/workflows/main.yml) -[![Replit](https://img.shields.io/badge/Try%20with%20Replit-black?logo=replit)](https://replit.com/new/github/Coding-Cuddles/bootstrap-python-kata) ## Overview This is a bootstrap repository for clean code katas in Python 3 using pytest. -## Usage - -You can import this project into [Replit](https://replit.com), and it will -handle all dependencies automatically. +## Prerequisites -### Prerequisites +- [Python 3.8+](https://www.python.org/) +- [pytest](https://pytest.org) -* [Python 3.8+](https://www.python.org/) -* [pytest](https://pytest.org) +## Usage ### Run main diff --git a/replit.nix b/replit.nix deleted file mode 100644 index 56778e4..0000000 --- a/replit.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ pkgs }: { - deps = [ - pkgs.python38Full - pkgs.python38Packages.pytest - ]; - env = { - PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ - # Needed for pandas / numpy - pkgs.stdenv.cc.cc.lib - pkgs.zlib - # Needed for matplotlib - pkgs.xorg.libX11 - ]; - PYTHONBIN = "${pkgs.python38Full}/bin/python3.8"; - LANG = "en_US.UTF-8"; - }; -}