go-task-bin 3.43.3__py3-none-win_amd64.whl → 3.44.0__py3-none-win_amd64.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.

@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.1
2
+ Name: go-task-bin
3
+ Version: 3.44.0
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
+ <div align="center">
22
+ <img id="logo" src="https://taskfile.dev/img/logo.svg" height="250px" width="250px" />
23
+ </div>
24
+ <br />
25
+
26
+ 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/).
27
+
28
+ Since it's written in [Go](https://go.dev/), 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.
29
+
30
+ ## Features
31
+
32
+ - [Easy installation](https://taskfile.dev/installation): just download a single binary, add to `$PATH` and you're done! Or you can also install using [Homebrew](https://brew.sh/), [Snapcraft](https://snapcraft.io/), or [Scoop](https://scoop.sh/) if you want.
33
+ - Available on CIs: by adding [this simple command](https://taskfile.dev/installation#install-script) to install on your CI script and you're ready to use Task as part of your CI pipeline;
34
+ - Truly cross-platform: while most build tools only work well on Linux or macOS, Task also supports Windows thanks to [this shell interpreter for Go](https://github.com/mvdan/sh).
35
+ - Great for code generation: you can easily [prevent a task from running](https://taskfile.dev/usage#prevent-unnecessary-work) if a given set of files haven't changed since last run (based either on its timestamp or content).
36
+
37
+ ## Documentation
38
+
39
+ - If you're new to Task, we recommend taking a look at our [getting started guide](https://taskfile.dev/getting-started/) for an quick introduction.
40
+ - You can also browse our [usage documentation](https://taskfile.dev/usage/) for more details on how all the features work.
41
+ - Or use our quick reference documentation for the [Taskfile schema](https://taskfile.dev/reference/schema/) or [CLI](https://taskfile.dev/reference/cli/).
42
+
43
+ ## install
44
+
45
+ ```sh
46
+ pip install go-task-bin
47
+ ```
@@ -0,0 +1,6 @@
1
+ go_task_bin-3.44.0.data/scripts/task.exe,sha256=sriQrBJDoUDsJpm2ODj5CSwGhqA8JjqVlWFcxVAL3Dk,18432512
2
+ go_task_bin-3.44.0.dist-info/METADATA,sha256=SJ4_gPRZdtCyWduk7qXKnjLqDWRuYDfD_1sd6bRsiTM,2450
3
+ go_task_bin-3.44.0.dist-info/WHEEL,sha256=v6YTPaHHhuNIE11FKtCLQanPGxl0cGjYv9I-6ccT7G8,97
4
+ go_task_bin-3.44.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
5
+ go_task_bin-3.44.0.dist-info/licenses/LICENSE,sha256=z-_nllQm-YXh22Mx5yv4xdRv0Pt8aBrWB0Fv7i_uVQs,1074
6
+ go_task_bin-3.44.0.dist-info/RECORD,,
@@ -1,50 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: go-task-bin
3
- Version: 3.43.3
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
- ```
@@ -1,6 +0,0 @@
1
- go_task_bin-3.43.3.data/scripts/task.exe,sha256=7VDjw8qpiA8_uAG1i5H3qT1FJ4niA6fWh_0tr2-_k2c,18362368
2
- go_task_bin-3.43.3.dist-info/METADATA,sha256=8HswdZryiWiSNrM8mhwBWPu68HAavD0OCZ1UTWQae_I,1574
3
- go_task_bin-3.43.3.dist-info/WHEEL,sha256=v6YTPaHHhuNIE11FKtCLQanPGxl0cGjYv9I-6ccT7G8,97
4
- go_task_bin-3.43.3.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
5
- go_task_bin-3.43.3.dist-info/licenses/LICENSE,sha256=z-_nllQm-YXh22Mx5yv4xdRv0Pt8aBrWB0Fv7i_uVQs,1074
6
- go_task_bin-3.43.3.dist-info/RECORD,,