-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.27 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.8.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["src*", "VkFFT"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --durations=30 --tb=native"
[tool.pylint.main]
recursive = true
jobs = 4
ignore = [".git", "__pycache__", "build", "dist", "VkFFT"]
extension-pkg-allow-list = ["pycl_fft._vkfft", "pycl_fft._clfft"]
[tool.pylint."messages control"]
disable = "all"
enable = "E,F,W0511"
[tool.pylint.REPORTS]
output-format = "colorized"
[project]
name = "pycl_fft"
version = "2021.1"
license = {file = "LICENSE"}
description = "PyOpenCL-based bindings to OpenCL FFT libraries"
readme = "README.rst"
authors = [
{name = "Zachary J Weiner"}
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Environment :: GPU",
]
dependencies = [
"numpy>=1.18.5",
"pyopencl",
]
[project.urls]
homepage = "https://github.com/zachjweiner/pycl-fft"
source = "https://github.com/zachjweiner/pycl-fft"
documentation = "https://pycl-fft.readthedocs.io/en/latest/"