-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.45 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hyray"]
[tool.setuptools.dynamic]
version = {attr = "hyray.__version__"}
readme = {file = ["README.md"]}
[project]
name = "hyray"
authors = [
{name = "Christopher Ariza"},
]
description = "GPU arrays (via CuPy) when possible, otherwise CPU arrays (via NumPy)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["NumPy", "CuPy", "hybrid", "array", "CUDA"]
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Environment :: GPU :: NVIDIA CUDA',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
'numpy >= 1.18.5'
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
'pytest==7.4.*',
'invoke==2.2.*',
]
test-cuda113 = [
'cupy-cuda113==10.6.*',
'pytest==7.4.*',
'invoke==2.2.*',
]
test-cuda101 = [
'cupy-cuda101==9.6.*',
'pytest==7.4.*',
'invoke==2.2.*',
]
# [project.scripts]
# my-script = "my_package.module:function"