Files
2026-03-09 22:30:41 +00:00

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"] }