-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
85 lines (71 loc) · 2.4 KB
/
pixi.toml
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
# vim: set ft=toml :
[project]
name = 'notes'
channels = ['conda-forge']
platforms = ['osx-arm64']
[dependencies]
python = { version = '>=3.13.1,<3.14' }
[pypi-dependencies]
mkdocs = { version = '>=1.6.1' }
mkdocs-macros-plugin = { version = '>=1.3.7' }
[pypi-dependencies.mkdocs-material]
git = 'ssh://git-personal/squidfunk/mkdocs-material-insiders.git'
rev = 'master'
extras = ['git', 'imaging', 'recommended']
[tasks]
serve = { cmd = ['mkdocs', 'serve', '--open'] }
push = { cmd = ['git', 'push', '--', 'personal'] }
deploy = { depends-on = 'push', cmd = [
'mkdocs', 'gh-deploy','--no-history', '--remote-name', 'personal',
] }
[environments]
default = { solve-group = 'default' }
lint = { features = ['lint'], solve-group = 'default' }
[feature.lint.pypi-dependencies]
pre-commit = { version = '>=4.1.0' }
pre-commit-hooks = { version = '>=5.0.0' }
[feature.lint.tasks]
lint = { depends-on = ['pre-commit-run'] }
pre-commit-run = { cmd = ['pre-commit', 'run', '--all-files'] }
pre-commit-install = { depends-on = [
'_pre-commit-install-commit-msg',
'_pre-commit-install-post-checkout',
'_pre-commit-install-post-commit',
'_pre-commit-install-post-merge',
'_pre-commit-install-post-rewrite',
'_pre-commit-install-pre-commit',
'_pre-commit-install-pre-merge-commit',
'_pre-commit-install-pre-push',
'_pre-commit-install-pre-rebase',
'_pre-commit-install-prepare-commit-msg',
] }
_pre-commit-install-commit-msg = { cmd = [
'pre-commit', 'install', '-f', '-t', 'commit-msg',
] }
_pre-commit-install-post-checkout = { cmd = [
'pre-commit', 'install', '-f', '-t', 'post-checkout',
] }
_pre-commit-install-post-commit = { cmd = [
'pre-commit', 'install', '-f', '-t', 'post-commit',
] }
_pre-commit-install-post-merge = { cmd = [
'pre-commit', 'install', '-f', '-t', 'post-merge',
] }
_pre-commit-install-post-rewrite = { cmd = [
'pre-commit', 'install', '-f', '-t', 'post-rewrite',
] }
_pre-commit-install-pre-commit = { cmd = [
'pre-commit', 'install', '-f', '-t', 'pre-commit',
] }
_pre-commit-install-pre-merge-commit = { cmd = [
'pre-commit', 'install', '-f', '-t', 'pre-merge-commit',
] }
_pre-commit-install-pre-push = { cmd = [
'pre-commit', 'install', '-f', '-t', 'pre-push',
] }
_pre-commit-install-pre-rebase = { cmd = [
'pre-commit', 'install', '-f', '-t', 'pre-rebase',
] }
_pre-commit-install-prepare-commit-msg = { cmd = [
'pre-commit', 'install', '-f', '-t', 'prepare-commit-msg',
] }