go-task-bin 3.43.2__py3-none-macosx_11_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of go-task-bin might be problematic. Click here for more details.

Binary file
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.1
2
+ Name: go-task-bin
3
+ Version: 3.43.2
4
+ Summary: task - A task runner / simpler Make alternative written in Go
5
+ Keywords: build,build-tool,devops,go,make,makefile,runner,task,task-runner,taskfile,tool
6
+ Author-Email: dowon <ks2515@naver.com>
7
+ License: MIT
8
+ Classifier: Programming Language :: Go
9
+ Classifier: Topic :: Software Development :: Build Tools
10
+ Project-URL: repository, https://github.com/Bing-su/pip-binary-factory
11
+ Project-URL: taskfile, https://taskfile.dev
12
+ Requires-Python: >=3.7
13
+ Description-Content-Type: text/markdown
14
+
15
+ # go-task-bin
16
+
17
+ https://github.com/go-task/task
18
+
19
+ https://taskfile.dev/
20
+
21
+ **Task** is a task runner / build tool that aims to be simpler and easier to use than, for example, [GNU Make](https://www.gnu.org/software/make/).
22
+
23
+ Since it's written in Go, Task is just a single binary and has no other dependencies, which means you don't need to mess with any complicated install setups just to use a build tool.
24
+
25
+ Once [installed](https://taskfile.dev/installation/), you just need to describe your build tasks using a simple [YAML](http://yaml.org/) schema in a file called Taskfile.yml:
26
+
27
+ ```yaml
28
+ Taskfile.yaml
29
+ ---
30
+ version: '3'
31
+
32
+ tasks:
33
+ hello:
34
+ cmds:
35
+ - echo 'Hello World from Task!'
36
+ silent: true
37
+ ```
38
+
39
+ And call it by running task hello from your terminal.
40
+
41
+ The above example is just the start, you can take a look at the [usage](https://taskfile.dev/usage) guide to check the full schema documentation and Task features.
42
+
43
+
44
+ This is a python wrapper that can be installed with pip.
45
+
46
+ ## install
47
+
48
+ ```sh
49
+ pip install go-task-bin
50
+ ```
@@ -0,0 +1,6 @@
1
+ go_task_bin-3.43.2.data/scripts/task,sha256=5j7iYv1VT4EZYxkSjsccwWJZttJMpbFMfCV61Wep4Tg,18121200
2
+ go_task_bin-3.43.2.dist-info/METADATA,sha256=V87ODVYuThmgc6TKN7NLpgPuzTfS322wO1Cic-z1iY8,1574
3
+ go_task_bin-3.43.2.dist-info/WHEEL,sha256=gWkWYU1Me45eF-pzBhHjOiNO-ccX1DW2sEDRctyXFpU,106
4
+ go_task_bin-3.43.2.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
5
+ go_task_bin-3.43.2.dist-info/licenses/LICENSE,sha256=z-_nllQm-YXh22Mx5yv4xdRv0Pt8aBrWB0Fv7i_uVQs,1074
6
+ go_task_bin-3.43.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: pdm-backend (2.4.4)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-macosx_11_0_x86_64
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+
3
+ [gui_scripts]
4
+
@@ -0,0 +1,22 @@
1
+
2
+ The MIT License (MIT)
3
+
4
+ Copyright (c) 2023 Bingsu
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.