-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (34 loc) · 1.12 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
[tool.poetry]
name = "numba-passthru"
version = "0.3.0"
description = "Stand-alone package for Numba passthrough types until PR 3640 has landed"
authors = ["Andreas Sodeur <[email protected]>"]
readme = "README.md"
keywords = ["numba"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Compilers",
]
homepage = "https://github.com/asodeur/numba-passthru"
packages = [
{include = "numba_passthru"}
]
# include = ["tox.ini"]
[tool.poetry.dependencies]
python = ">=3.6"
numba = ">=0.51.2"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"