forked from roaffix/arrayfire-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.77 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arrayfire"
version = "0.1.0"
dependencies = ["arrayfire-binary-python-wrapper == 0.7.0"]
requires-python = ">=3.10"
description = "ArrayFire Python"
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "ArrayFire", email = "[email protected]" }]
keywords = [
"arrayfire",
"parallel computing",
"high performance computing",
"hpc",
"gpu",
"cpu",
"opencl",
"cuda",
"oneapi",
"python",
"wrapper",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "http://arrayfire.com"
"General Documentation" = "https://arrayfire.org/docs/index.htm"
[project.optional-dependencies]
benchmarks = ["numpy ~= 1.26.4"]
[project.entry-points.array_api]
array_api = "arrayfire.array_api"
[tool.black]
line-length = 119
exclude = '''
(
__pycache__
| \btutorials\b
| \bbuild\b
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[tool.isort]
line_length = 119
profile = "black"
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
show_error_codes = true
warn_return_any = true
exclude = ".venv"