-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
70 lines (68 loc) · 1.62 KB
/
setup.cfg
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
[metadata]
name = pykokkos-base
url = http://github.com/kokkos/kokkos-python
download_url = http://github.com/kokkos/kokkos-python.git
project_urls = http://github.com/kokkos/kokkos-python.git
author = Jonathan R. Madsen
author_email = [email protected]
maintainer = Jonathan R. Madsen
maintainer_email = [email protected]
license = BSD 3-Clause License
description = Python bindings to Kokkos Views for data interop
keywords =
kokkos
parallelism
performance
performance portability
gpu
cuda
hip
rocm
hpx
openmp
openmptarget
sycl
serial
classifiers =
Development Status :: 4 - Beta
Environment :: GPU
Environment :: GPU :: NVIDIA CUDA
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
License :: OSI Approved :: BSD License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Operating System :: POSIX :: BSD
Operating System :: Unix
Programming Language :: C++
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
[options]
packages = kokkos
zip_safe = false
include_package_data = false
setup_requires =
scikit-build
cmake>=3.16
[flake8]
ignore =
F403,
F405
exclude =
.git,
__pycache__,
docs,
old,
build,
dist,
_skbuild,
external,
max-complexity = 20
max-line-length = 90