-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.66 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rtxpy"
version = "0.0.5"
description = "Ray tracing using CUDA accessible from Python"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "makepath" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy>=1.21",
]
[project.optional-dependencies]
# GPU dependencies - cupy provides CUDA context management
# Install cupy via: conda install -c conda-forge cupy
# Note: otk-pyoptix must be installed separately from NVIDIA
# See: https://github.com/NVIDIA/otk-pyoptix
tests = ["pytest"]
terrain = ["numba", "xarray", "scipy"]
[project.urls]
Homepage = "https://github.com/makepath/rtxpy"
Repository = "https://github.com/makepath/rtxpy"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
rtxpy = ["*.ptx"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]