-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.12 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
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "libgs"
version = "0.0.1"
requires-python = ">=3.8"
dependencies = [
"absl-py~=2.1",
"jax==0.4.20",
"jaxlib==0.4.20",
"jaxtyping==0.2.28",
"omegaconf~=2.3",
"opencv-python~=4.9",
"plyfile~=1.0",
"tensorboard~=2.16",
"tqdm~=4.6",
"simple-knn @ git+https://gitlab.inria.fr/bkerbl/simple-knn.git",
"diff-gaussian-rasterization @ git+https://github.com/graphdeco-inria/diff-gaussian-rasterization"
]
[project.optional-dependencies]
dev = [
"autoflake>=2.2.1",
"black>=23.11.0",
"ipython>=7.8.0",
"isort>=5.12.0",
"pre-commit>=3.5.0",
]
[tool.setuptools.packages.find]
include = ["libgs*"]
[tool.black]
line-length = 88
target-version = ['py38', 'py39']
include = '\.pyi?$'
extend-exclude = '''
/(
# The following are specific to Black, you probably don't want those.
tests/data
| profiling
)/
'''
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true
skip_glob = []
[tool.autoflake]
expand-star-imports = true
remove-all-unused-imports = true
remove-unused-variables = true
ignore-init-module-imports = true
recursive = true
in-place = true