-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 849 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
[project]
name = "toy"
version = "0.1.0"
authors = [{ name = "Richard Nathan Ambler", email = "rambler@wya.top" }]
description = "An implementation of Sedgewick & Wayne's Toy Computer and a simple assembler."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Typing :: Typed",
]
keywords = ["assembly", "machine language", "Sedgewick", "Wayne"]
dependencies = ["prompt_toolkit>3.0"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/ram6ler/Toy-Computer-Assembler"
Issues = "https://github.com/ram6ler/Toy-Computer-Assembler/issues"
[tool.setuptools.package-data]
"toy" = ["py.typed"]