forked from mojoto/morrow.mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmojoproject.toml
32 lines (27 loc) · 1.06 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 <miktavarez@gmail.com>"]
channels = ["conda-forge", "https://conda.modular.com/max"]
description = "Datetime library."
name = "small_time"
platforms = ["osx-arm64", "linux-64"]
version = "0.1.6"
license = "MIT"
license-file = "LICENSE"
homepage = "https://github.com/thatstoasty/small-time"
repository = "https://github.com/thatstoasty/small-time"
[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"
# [feature.nightly]
# channels = ["conda-forge", "https://conda.modular.com/max-nightly"]
# [feature.nightly.dependencies]
# max = ">=25.1.0.dev2024121305"
# [environments]
# nightly = {features = ["nightly"]}