-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (28 loc) · 895 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (28 loc) · 895 Bytes
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
[project]
name = "Py-BF-Runtime"
version = "0.6.1"
description = "A Brainfuck runtime implemented with Python."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Dorapower", email = "thatisluo@outlook.com"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Typing :: Typed",
]
dependencies = [
"llvmlite >= 0.40.0",
"numpy >= 1.24.3",
]
[project.urls]
Homepage = "https://github.com/Dorapower/Py-BF-Runtime"
Documentation = "https://github.com/Dorapower/Py-BF-Runtime/wiki"
Repository = "https://github.com/Dorapower/Py-BF-Runtime.git"