FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
agent-framework/python/shared_tasks.toml at main · alliscode/agent-framework · GitHub
alliscode
/
agent-framework
Public
forked from
microsoft/agent-framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
agent-framework
/
python
/
shared_tasks.toml
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (30 loc) · 1.08 KB
Breadcrumbs
agent-framework
/
python
/
shared_tasks.toml
Copy path
File metadata and controls
39 lines (30 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
[
tool
.
poe
.
tasks
.
syntax
]
help
=
"
Run Ruff formatting and Ruff checks for this package.
"
sequence
= [
"
fmt
"
,
"
lint
"
]
[
tool
.
poe
.
tasks
.
fmt
]
help
=
"
DEPRECATED: Use `syntax --format` instead.
"
cmd
=
"
ruff format
"
[
tool
.
poe
.
tasks
.
format
]
help
=
"
DEPRECATED: Use `syntax --format` instead.
"
ref
=
"
fmt
"
[
tool
.
poe
.
tasks
.
lint
]
help
=
"
DEPRECATED: Use `syntax --check` instead.
"
cmd
=
"
ruff check
"
[
tool
.
poe
.
tasks
.
pyright
]
help
=
"
Run Pyright for this package.
"
cmd
=
"
pyright
"
[
tool
.
poe
.
tasks
.
publish
]
help
=
"
Publish this package with uv.
"
cmd
=
"
uv publish
"
[
tool
.
poe
.
tasks
.
clean-dist
]
help
=
"
Remove generated dist artifacts for this package.
"
cmd
=
"
rm -rf dist
"
[
tool
.
poe
.
tasks
.
build-package
]
help
=
"
Build distribution artifacts for this package.
"
cmd
=
"
uv build
"
[
tool
.
poe
.
tasks
.
move-dist
]
help
=
"
Move built package artifacts into the workspace dist directory.
"
cmd
=
"
sh -c 'mkdir -p ../../dist && mv dist/* ../../dist/ 2>/dev/null || true'
"
[
tool
.
poe
.
tasks
.
build
]
help
=
"
Build this package and move its artifacts into the workspace dist directory.
"
sequence
= [
"
build-package
"
,
"
move-dist
"
]
Back
|
FazBrowse Home
|
New Git URL