Files
Interpreters/pyproject.toml

19 lines
381 B
TOML

[project]
name = "interpreter"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["colorama>=0.4.6", "cython>=3.0.12"]
[project.scripts]
bf = "brainfuck.__main__:main"
brainfuck = "brainfuck.__main__:main"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"