-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.87 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
[project] # Project metadata
name = "GGNN"
readme = "README.md"
requires-python = ">=3.8"
license = { "file" = "LICENSE" }
authors = [
{"name" = "Lukas Ruppert", "email" = "lukas.ruppert@uni-tuebingen.de"},
{"name" = "Deborah Kornwolf", "email" = "deborah.kornwolf@student.uni-tuebingen.de"},]
keywords = ["kNN", "cuda", "nearest-neighbor", "graph", "GPU"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"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 :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = []
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://github.com/cgtuebingen/ggnn"
Documentation = "https://ggnn.readthedocs.io/"
[build-system] # How pip and other frontends should build this project
requires = ["py-build-cmake~=0.3.3", "nanobind", "typing_extensions"]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module] # Where to find the Python module to package
directory = "python-src"
[tool.py-build-cmake.sdist] # What to include in source distributions
include = ["CMakeLists.txt", "python-src/*", "src/*", "include/*", "examples/*"]
[tool.py-build-cmake.cmake] # How to build the CMake project
build_type = "Release"
source_path = "."
build_args = ["-j"]
install_components = ["python_modules"]