diff options
| author | Bobby <[email protected]> | 2022-11-06 00:58:50 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-06 00:58:50 -0400 |
| commit | 8f8d5b2fa7264e9c614a048fd55dbd9925c1aeed (patch) | |
| tree | c8103cf9ec4b7233378d9e931f626dae317b8c67 | |
| parent | f53b87610f564dfd46c597531e3da723e1b00a0c (diff) | |
| download | texty-8f8d5b2fa7264e9c614a048fd55dbd9925c1aeed.tar.xz texty-8f8d5b2fa7264e9c614a048fd55dbd9925c1aeed.zip | |
feat: added pkglist
| -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 |
