-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmojoproject.toml
37 lines (31 loc) · 1.27 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
33
34
35
36
37
[project]
authors = ["Mikhail Tavarez <[email protected]>"]
channels = ["https://repo.prefix.dev/mojo-community", "conda-forge", "https://conda.modular.com/max"]
description = "Style definitions for nice terminal layouts. Built with TUIs in mind."
name = "mog"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.7"
license = "MIT"
license-file = "LICENSE"
homepage = "https://github.com/thatstoasty/mog"
repository = "https://github.com/thatstoasty/mog"
[tasks]
tests = "python scripts/util.py run tests"
benchmarks = "python scripts/util.py run benchmarks"
examples = "python scripts/util.py run examples"
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"
weave = ">=0.1.3"
mist = ">=0.1.10"
# [feature.nightly]
# channels = ["https://repo.prefix.dev/mojo-community-nightly", "conda-forge", "https://conda.modular.com/max-nightly"]
# [feature.nightly.dependencies]
# max = ">=25.1.0.dev2024121305"
# weave = ">=0.1.3.nightly5"
# mist = ">=0.1.9.nightly3"
# [environments]
# nightly = {features = ["nightly"]}