-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
38 lines (34 loc) · 1.2 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "numba-pixie"
dynamic = ["version"]
description = "Creates performance portable libraries with embedded source representations."
readme = "README.rst"
license = { text = "BSD-2-Clause" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Compilers",
]
dependencies = ["llvmlite >=0.44.0dev0,<0.45", "setuptools"]
[project.urls]
"Repository" = "https://github.com/numba/pixie"
"Homepage" = "https://github.com/numba/pixie"
"Documentation" = "https://numba-pixie.readthedocs.io/"
"Issue Tracker" = "https://github.com/numba/pixie/issues"
[project.scripts]
pixie-cc = "pixie.cli:pixie_cc"
pixie-cythonize = "pixie.cli:pixie_cythonize"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]