-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
29 lines (28 loc) · 1007 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
[project]
name = "compilerinterface"
version = "0.0.1"
authors = [ {name = "The authors of \"The Next 700 ML-Enabled Compiler Optimizations\"" }]
description = "Communication framework for ML-Enabled Compiler Optimizations."
license = { text= "Apache License v2.0 with LLVM Exceptions"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Compilers",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
]
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"