-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
98 lines (88 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[project]
name = "fdray"
version = "0.1.17"
description = "A Python interface for POV-Ray (Persistence of Vision Raytracer)"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["povray", "ray-tracing", "3d", "rendering", "pov-ray", "graphics"]
authors = [{ name = "daizutabi", email = "daizutabi@gmail.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11"
dependencies = ["numpy>=2", "pillow>=10"]
[project.urls]
Documentation = "https://daizutabi.github.io/fdray/"
Source = "https://github.com/daizutabi/fdray"
Issues = "https://github.com/daizutabi/fdray/issues"
[dependency-groups]
dev = [
"basedpyright>=1.32.1",
"ipykernel>=6",
"matplotlib>=3.6",
"moviepy>=2",
"polars>=1",
"prek>=0.2.13",
"pytest>=9.0.0",
"pytest-clarity>=1",
"pytest-cov>=6",
"pytest-randomly>=3.16",
"pytest-xdist>=3.6",
"ruff>=0.14.3",
]
docs = ["mkapi>=4.4", "mkdocs-material", "mkdocs-nbsync", "nbconvert>=7"]
[tool.pytest]
addopts = ["--cov=fdray", "--cov-report=lcov:lcov.info", "--doctest-modules"]
strict_config = true
strict_markers = true
strict_parametrization_ids = true
strict_xfail = true
[tool.coverage.report]
exclude_lines = ["no cov", "raise NotImplementedError", "if TYPE_CHECKING:"]
skip_covered = true
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
unfixable = ["F401"]
ignore = [
"A002",
"ANN401",
"D",
"FBT001",
"N802",
"PGH003",
"PLR0913",
"PLC0415",
"PLR2004",
"S603",
"SIM102",
"TRY003",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN", "FBT", "S101"]
"*.ipynb" = ["ANN", "F403", "F405", "T201"]
[tool.basedpyright]
include = ["src"]
exclude = ["notebooks", "tests"]
reportAny = false
reportExplicitAny = false
reportImplicitOverride = false
reportImportCycles = false
reportIncompatibleVariableOverride = false
reportUnusedCallResult = false
[tool.ty.rules]
unresolved-import = "ignore"