-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
79 lines (74 loc) · 2.18 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",
"pybind11",
"cibuildwheel",
"scikit-build-core",
"cmake",
"ninja",
"icecream",
"build"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-DCMAKE_BUILD_TYPE=Release", "-DCMAKE_BUILD_PARALLEL_LEVEL=1"]
ninja.make-fallback = true
sdist.cmake = true
[project]
name = "librapid"
version = "0.7.5"
description = "A high-performance library for arrays and numeric calculations"
readme = "README.md"
long_description = ["file: README.md"]
long_description_content_type = "text/markdown"
author = "Toby Davis"
author_email = "[email protected]"
license = { file = "LICENSE" }
keywords = [
"librapid",
"high-performance computing",
"c++",
"mathematics",
"array",
"matrix",
"vector",
"tensor",
"gpu",
"cuda",
"openmp",
"multithreading",
"multicore",
"parallel"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
homepage = "https://tobydavis.dev/librapid"
documentation = "https://librapid.readthedocs.io/en/latest/"
repository = "https://github.com/LibRapid/librapid"
download = "https://pypi.org/project/librapid/#files"
bug-tracker = "https://github.com/LibRapid/librapid/issues"