Fix: rename enterpreter to interpreter

This commit is contained in:
2025-04-10 14:24:55 +01:00
parent 753f65384b
commit 17fd5f7acf
10 changed files with 59 additions and 17 deletions

View File

@@ -1,13 +1,18 @@
[project]
name = "enterpreter"
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",
]
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"