go-task-bin 3.44.1__py3-none-android_33_arm64_v8a.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,47 @@
1
+ Metadata-Version: 2.1
2
+ Name: go-task-bin
3
+ Version: 3.44.1
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.1.data/scripts/task,sha256=fFadr0ledYAdrLgPZ-cR75go1ZEtvJNIAOeLPdRxd_s,18612577
2
+ go_task_bin-3.44.1.dist-info/METADATA,sha256=cQ-0W8O-dMNjc4eZv1sjE28vQej1VFNYr_UmTeYG3nc,2450
3
+ go_task_bin-3.44.1.dist-info/WHEEL,sha256=V5CWPIU-nsfLPT6eIy2-4qt4HiSVaCtlz9KS2hyUtBk,108
4
+ go_task_bin-3.44.1.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
5
+ go_task_bin-3.44.1.dist-info/licenses/LICENSE,sha256=z-_nllQm-YXh22Mx5yv4xdRv0Pt8aBrWB0Fv7i_uVQs,1074
6
+ go_task_bin-3.44.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: pdm-backend (2.4.5)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-android_33_arm64_v8a
@@ -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.