forked from windelbouwman/ppci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (78 loc) · 2.6 KB
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools", "wheel", "flit_core >=2,<3"]
# TODO: go for PEP-517?
# build-backend = "setuptools.build_meta"
build-backend = "flit_core.buildapi"
[tool.black]
line-length = 79
[tool.pytest]
junit_family = "xunit1"
[tool.pytest.logging]
log_level = "info"
[tool.flit.metadata]
module = "ppci"
author = "Windel Bouwman"
author-email = "[email protected]"
home-page = "https://ppci.readthedocs.io/en/latest/"
requires-python = ">=3.5"
description-file = "readme.rst"
keywords = "compiler,assembler,embedded,riscv,x86,arm,stm8,msp430,webassembly,xtensa"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Programming Language :: Assembly",
"Programming Language :: C",
"Programming Language :: Java",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Pre-processors",
]
[tool.flit.sdist]
include = [
"readme.rst",
"pyproject.toml",
"examples/",
"ppci/",
"doc/",
"test/",
"librt/",
"tools/",
]
[tool.flit.metadata.urls]
Documentation = "https://ppci.readthedocs.io/en/latest/"
[tool.flit.scripts]
ppci-archive = "ppci.cli.archive:archive"
ppci-asm = "ppci.cli.asm:asm"
ppci-build = "ppci.cli.build:build"
ppci-c3c = "ppci.cli.c3c:c3c"
ppci-cc = "ppci.cli.cc:cc"
ppci-dbg = "ppci.cli.dbg:dbg"
ppci-disasm = "ppci.cli.disasm:disasm"
ppci-hexdump = "ppci.cli.hexdump:hexdump"
ppci-hexutil = "ppci.cli.hexutil:hexutil"
ppci-java = "ppci.cli.java:java"
ppci-ld = "ppci.cli.link:link"
ppci-llc = "ppci.cli.llc:llc"
ppci-mkuimage = "ppci.cli.mkuimage:mkuimage"
ppci-objcopy = "ppci.cli.objcopy:objcopy"
ppci-objdump = "ppci.cli.objdump:objdump"
ppci-ocaml = "ppci.cli.ocaml:ocaml"
ppci-opt = "ppci.cli.opt:opt"
ppci-pascal = "ppci.cli.pascal:pascal"
ppci-pedump = "ppci.cli.pedump:pedump"
ppci-pycompile = "ppci.cli.pycompile:pycompile"
ppci-readelf = "ppci.cli.readelf:readelf"
ppci-wasm2wat = "ppci.cli.wasm2wat:wasm2wat"
ppci-wasmcompile = "ppci.cli.wasmcompile:wasmcompile"
ppci-wat2wasm = "ppci.cli.wat2wasm:wat2wasm"
ppci-wabt = "ppci.cli.wabt:wabt"
ppci-yacc = "ppci.cli.yacc:yacc"