-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (29 loc) · 944 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "minpiler"
author = "Vitalik Verhovodov"
author-email = "[email protected]"
home-page = "https://github.com/neumond/minpiler"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Compilers",
"Topic :: Utilities",
]
description-file = "README.md"
requires-python = ">=3.6"
requires = [
"dataclasses; python_version <= '3.6'",
]
keywords = "mindustry,mlog,mlogic,compiler,processor"
[tool.flit.scripts]
minpiler = "minpiler.cmdline:run"