-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixi.toml
40 lines (34 loc) · 1.04 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
[project]
name = "site"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64"]
[dependencies]
python = "3.*"
pelican = ">=4.10.1" # fixes: getpelican/pelican#2674
curl = "*"
markdown = "*"
docutils = "*"
requests = "*"
nodejs = "*"
pybtex = "*"
pygments = ">=2.2"
bs4 = "*"
[pypi-dependencies]
pelican-fontawesome = "*"
pelican-deadlinks = { git = "https://github.com/pelican-plugins/deadlinks" }
pelican-pybtex = "*"
[tasks]
bib = "curl --create-dirs --output content/data/publications.bib https://raw.githubusercontent.com/anjos/cv/main/publications.bib"
init = { cmd = "git submodule update --init --recursive", depends-on = ["bib"] }
clean = "rm -rf output"
build = "pelican"
gh-action = { depends-on = ["bib", "build"] }
# using --log-handler=plain until https://github.com/getpelican/pelican/pull/3398 makes
# to a release of pelican
serve = { cmd = "pelican --listen --autoreload", depends-on = ["build"] }
[feature.qa.dependencies]
pre-commit = "*"
[feature.debug.dependencies]
pdbpp = "*"
[environments]
default = { features = ["qa", "debug"] }