-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
158 lines (124 loc) · 5.18 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# MIT License
# Copyright (c) 2025 Aaron Saikovski
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# https://taskfile.dev
version: "3"
#ENV VARS
env:
PROJECT_NAME: "pystarter"
PYTHON_VERSION: "3.13" #">=3.13,<3.13"
###############################################################################
tasks:
## default - Default cmd - create
default:
deps: [create]
desc: "Call Create as default cmd."
###########################################################################
## create - Inits the poetry virtual environment and installs baseline packages
create:
desc: "Inits the python project using UV and creates and activates a new virtual environment."
cmds:
- uv init --author-from auto --no-readme --color auto --python $PYTHON_VERSION
- uv venv
- task deps
- task activate
- cmd /c "type pyproject_base.toml >> pyproject.toml || exit 0"
###########################################################################
## deps - Install the dependencies
deps:
desc: "Install the dependencies."
deps: [activate]
cmds:
- uv add pytest pytest-cov isort black ruff bandit mypy colorama
- uv tool upgrade --all
###########################################################################
## activate - Activates the virtual environment
activate:
desc: "Activates the virtual environment."
cmds:
- .venv\\Scripts\\activate
###########################################################################
## run - Run the script main.py
run:
desc: "Run the script main.py"
deps: [activate]
cmds:
- uv run -m $PROJECT_NAME
###########################################################################
# clean - Cleans the environment, Overwrites the pyproject.toml file
clean:
desc: "Cleans the environment, Overwrites the pyproject.toml file"
cmds:
- cmd /c "rmdir /s /q .venv || exit 0"
- cmd /c "rmdir /s /q dist || exit 0"
- cmd /c "rmdir /s /q .ruff_cache || exit 0"
- cmd /c "rmdir /s /q .pytest_cache || exit 0"
- cmd /c "del /q .python-version || exit 0"
- cmd /c "del /q uv.lock || exit 0"
- cmd /c "del /q pyproject.toml || exit 0"
#############################################################################
## test - Tests the project
test:
desc: "Tests the project."
deps: [activate]
cmds:
- uv tool run pytest
###########################################################################
## update - updates dependency versions
update:
desc: "updates dependency versions"
deps: [activate]
cmds:
- uv tool upgrade --all
###########################################################################
## lint - Lints the project and type checks the project
lint:
desc: "Lints the project and performs type checking"
deps: [activate]
cmds:
- uv tool run isort .
#- uv tool run black .
- uv tool run ruff check . --fix
- uv tool run mypy --check-untyped-defs .
###########################################################################
## vulncheck - Checks for vulnerabilities in the project
vulncheck:
desc: "Checks for vulnerabilities in the project"
cmds:
- uv tool run bandit -r .
###########################################################################
## release - uses pyinstaller to package your Python application into a single package
release:
desc: "uses pyinstaller to package your Python application into a single package"
deps: [activate]
cmds:
- uv tool run pyinstaller main.py
###############################################################################
## docker-build - builds a docker image based on the docker file
docker-build:
desc: "builds a docker image based on the docker file"
deps: [deps]
cmds:
- docker build -t $PROJECT_NAME:latest .
###############################################################################
## docker-run - runs the docker container
docker-run:
desc: "builds a docker image based on the docker file"
#deps: [docker-build]
cmds:
- docker run $PROJECT_NAME:latest
###############################################################################