diff options
| -rw-r--r-- | PKGLIST | 6 | ||||
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | setup.py | 13 |
3 files changed, 16 insertions, 8 deletions
@@ -0,0 +1,6 @@ +black +isort +click +inquirer +pyyaml +tk @@ -150,7 +150,4 @@ The maintainers in the `maintainers.yml` file are listed in the following format > **Note**: Please do not edit the `README.md` file directly. Instead, edit the `maintainers.yml` file and run the `commit.sh` script to generate the `README.md` file. -<!-- maintainers --> -- [Bobby](luciferreeves) - [https://thatcomputerscientist.com](https://thatcomputerscientist.com) - - +<!-- maintainers -->
- [Bobby](luciferreeves) - [https://thatcomputerscientist.com](https://thatcomputerscientist.com)

\ No newline at end of file @@ -23,11 +23,16 @@ def install_pip(package_name): ) -PACKAGES = ["black", "isort", "click", "inquirer", "pyyaml"] - - def install_packages(): - install_pip(" ".join(PACKAGES)) + # read PKGLIST file + packages = [] + with open("PKGLIST", "r") as f: + packages = f.readlines() + packages = [x.strip() for x in packages] + packages = " ".join(packages) + + # install packages + install_pip(packages) import click |
