-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmojoproject.toml
24 lines (22 loc) · 906 Bytes
/
mojoproject.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
[project]
authors = ["Mikhail Tavarez <[email protected]>"]
channels = ["https://repo.prefix.dev/mojo-community", "conda-forge", "https://conda.modular.com/max"]
description = "A Budding CLI Library!"
name = "prism"
platforms = ["osx-arm64", "linux-64"]
version = "0.3.0"
license = "MIT"
license-file = "LICENSE"
homepage = "https://github.com/thatstoasty/prism"
repository = "https://github.com/thatstoasty/prism"
[tasks]
tests = "python scripts/util.py run tests"
benchmarks = "python scripts/util.py run benchmarks"
examples = "bash scripts/examples.sh"
template = "python scripts/util.py templater"
build = { cmd = "python scripts/util.py build", env = {MODULAR_MOJO_IMPORT_PATH = "$CONDA_PREFIX/lib/mojo"} }
publish = { cmd = "python scripts/util.py publish", env = { PREFIX_API_KEY = "$PREFIX_API_KEY" } }
bp = { depends_on=["build", "publish"] }
[dependencies]
max = ">=24.6.0"
mog = ">=0.1.7"