https://github.com/your-tools/teams-maker
https://github.com/your-tools/teams-maker
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/your-tools/teams-maker
- Owner: your-tools
- Created: 2022-10-28T09:00:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-20T16:00:56.000Z (over 1 year ago)
- Last Synced: 2025-03-27T09:06:05.066Z (about 1 year ago)
- Language: Python
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# teams-maker
Create a list of teams with funny names from a list of participants
## Usage
Put all the participants in a file, one per line.
Then run:
```
$ teams-maker PARTICIPANTS_PATH --source colors --team-size
```
You'll get an output looking like this:
```text
---------- Team Almond ----------
Bailey
Peter
Randy
Ronald
Taylor
---------- Team Blue ----------
Christine
Jesse
Katherine
Melissa
Ryan
```
Note that some teams may have a little more or a little less than members
than `TEAM_SIZE`.
## Contributing
* Install [poetry](https://python-poetry.org/)
* Install required dependencies
```
poetry install
```
Before submitting a change, run the following commands:
```
poetry run invoke lint
poetry run pytest
```