-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 848 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 848 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "pcc-compiler"
version = "2.0.0"
description = "PCC — Python 实现的 C 语言编译器(源码 → x86-64 汇编)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "flymysql", email = "flyphp@outlook.com" }]
keywords = ["compiler", "python", "parser", "lexer", "asm", "c-language", "ll1"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Compilers",
]
[project.scripts]
pcc = "pcc.cli:main"
[tool.setuptools]
packages = ["pcc"]