-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (52 loc) · 965 Bytes
/
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
[project]
name = "incomplete-gamma-kernels"
version = "0.1.0"
authors = [{ name = "Patrick Stotko", email = "[email protected]" }]
description = ""
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
# Library
"torch",
"numpy",
"scipy",
"charonload",
# Examples
"cmasher",
"matplotlib",
"polyscope",
"trimesh",
"tqdm",
]
[project.optional-dependencies]
dev = [
# Packaging
"build",
# Formatting
"black~=24.0",
"isort",
"docformatter",
"clang-format~=14.0",
# Linting
"codespell",
# Tests
"pytest",
# Other
"nox",
]
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 38
[tool.docformatter]
wrap-summaries = 120
wrap-descriptions = 120
pre-summary-newline = true
tab-width = 4
black = true
syntax = "numpy"