-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
44 lines (38 loc) · 970 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
[project]
name = "in2n"
version = "0.1.0"
dependencies=[
"nerfstudio>=0.3.0",
"clip @ git+https://github.com/openai/CLIP.git",
"diffusers>=0.14.0.dev0",
"transformers>=4.26.1",
"accelerate",
"einops",
]
# black
[tool.black]
line-length = 120
# pylint
[tool.pylint.messages_control]
max-line-length = 120
generated-members = ["numpy.*", "torch.*", "cv2.*", "cv.*"]
good-names-rgxs = "^[_a-zA-Z][_a-z0-9]?$"
ignore-paths = ["scripts/colmap2nerf.py"]
jobs = 0
ignored-classes = ["TensorDataclass"]
disable = [
"duplicate-code",
"fixme",
"logging-fstring-interpolation",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"unnecessary-ellipsis",
]
[tool.setuptools.packages.find]
include = ["in2n"]
[project.entry-points.'nerfstudio.method_configs']
in2n = 'in2n.in2n_config:in2n_method'
in2n_small = 'in2n.in2n_config:in2n_method_small'
in2n_tiny = 'in2n.in2n_config:in2n_method_tiny'