-
Notifications
You must be signed in to change notification settings - Fork 2
/
mojoproject.toml
32 lines (27 loc) · 1.01 KB
/
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
25
26
27
28
29
30
31
32
[project]
authors = ["Mikhail Tavarez <[email protected]>"]
channels = ["conda-forge", "https://conda.modular.com/max"]
description = "Experiments in porting over Golang stdlib into Mojo."
name = "gojo"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.13"
license = "MIT"
license-file = "LICENSE"
homepage = "https://github.com/thatstoasty/gojo"
repository = "https://github.com/thatstoasty/gojo"
[tasks]
run_file = "bash scripts/run_file.sh"
tests = "bash scripts/tests.sh"
benchmarks = "bash scripts/benchmarks.sh"
template = "magic run python scripts/templater.py"
build = { cmd = "bash scripts/build.sh", env = {MODULAR_MOJO_IMPORT_PATH = "$CONDA_PREFIX/lib/mojo"} }
publish = { cmd = "bash scripts/publish.sh", env = { PREFIX_API_KEY = "$PREFIX_API_KEY" } }
bp = { depends_on=["build", "publish"] }
[dependencies]
max = ">=24.5.0,<25"
[feature.nightly]
channels = ["conda-forge", "https://conda.modular.com/max-nightly"]
[feature.nightly.dependencies]
max = ">=24.6.0.dev2024092405"
[environments]
nightly = ["nightly"]