-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ana
committed
Sep 22, 2022
1 parent
c49d33c
commit 9443dfe
Showing
9 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Multipick Tests | ||
name: groupick Tests | ||
on: [push, pull_request] | ||
jobs: | ||
ci: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ test: | |
|
||
.PHONY=clean | ||
clean: | ||
rm -fr build dist multipick.egg-info | ||
rm -fr build dist groupick.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from multipick import multipick | ||
from groupick import groupick | ||
|
||
title = "Assign languages to groups 'a', 'b' or '1'." | ||
options = ["Java", "JavaScript", "Python", "PHP", "C++", "Erlang", "Haskell"] | ||
groups:set = {"a", "b", 1} | ||
selected = multipick(options, groups, title, indicator="=>", default_index=2) | ||
selected = groupick(options, groups, title, indicator="=>", default_index=2) | ||
print(f"Here is your assignment: {selected}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from multipick import multipick | ||
from groupick import groupick | ||
|
||
title = "Assign languages to groups 'a', 'b' or '1'." | ||
options = ["foo.bar%s.baz" % x for x in range(1, 71)] | ||
groups:set = {"a", "b", 1} | ||
selected = multipick(options, groups, title) | ||
selected = groupick(options, groups, title) | ||
print(selected) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[tool.poetry] | ||
name = "multipick" | ||
name = "groupick" | ||
version = "1.0.0" | ||
description = "Assign options to groups in the terminal with a simple GUI. Based on wong2's pick" | ||
authors = ["Ana <[email protected]>", "wong2 <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/anafvana/multipick/" | ||
homepage = "https://github.com/anafvana/multipick/" | ||
repository = "https://github.com/anafvana/groupick/" | ||
homepage = "https://github.com/anafvana/groupick/" | ||
keywords = ["terminal", "gui","pick", "group", "assign"] | ||
|
||
[tool.poetry.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters