mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
23 lines
568 B
TOML
Executable File
23 lines
568 B
TOML
Executable File
[project]
|
|
authors = [{name = "Modular", email = "hello@modular.com"}]
|
|
dependencies = []
|
|
name = "Python to Mojo interoperability"
|
|
requires-python = ">= 3.11"
|
|
version = "0.1.0"
|
|
|
|
[build-system]
|
|
build-backend = "hatchling.build"
|
|
requires = ["hatchling"]
|
|
|
|
[tool.pixi.workspace]
|
|
channels = ["conda-forge", "https://conda.modular.com/max-nightly/"]
|
|
platforms = ["osx-arm64", "linux-aarch64", "linux-64"]
|
|
|
|
[tool.pixi.dependencies]
|
|
mojo = "<1.0.0"
|
|
|
|
[tool.pixi.tasks]
|
|
hello = "python hello.py"
|
|
mandelbrot = "python mandelbrot.py"
|
|
test = { depends-on = ["hello", "mandelbrot"] }
|