-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.16 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
[project]
name = "torchCompactRadius"
version = "0.2.3"
authors = [
{ name="Rene Winchenbach", email="[email protected]" },
]
maintainers = [
{ name="Rene Winchenbach", email="[email protected]" },
]
description = "Compact Hashing based radius search for pyTorch using C++/CUDA backends."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["sph","radius","pytorch"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch", "numpy"
]
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/wi-re/torchCompactRadius"
Issues = "https://github.com/wi-re/torchCompactRadius/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # <-- this changed
[tool.setuptools.package-data]
"*" = ["*.*"] # <-- this changed