-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
102 lines (91 loc) · 2.03 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
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
99
100
101
102
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "torch>=2.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bayes3d"
authors = [
{name = "Nishad Gothoskar", email = "[email protected]"},
]
description = "Probabilistic inference in 3D."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"artificial-intelligence",
"probabilistic-programming",
"bayesian-inference",
"differentiable-programming"
]
license = {text = "Apache 2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"distinctipy",
"genjax==0.1.1",
"graphviz",
"imageio",
"matplotlib",
"meshcat",
"natsort",
"numpy",
"open3d",
"opencv-python",
"plyfile",
"pyliblzfse",
"pyransac3d",
"tensorflow-probability",
"timm",
"trimesh",
]
dynamic = ["version", "optional-dependencies"]
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv"
]
# extend-include = ["*.ipynb"]
line-length = 88
indent-width = 4
[tool.ruff.lint]
exclude = ["bayes3d/_mkl/*.py"]
extend-select = ["I"]
select = ["E4", "E7", "E9", "F"]
# F403 disables errors from `*` imports, which we currently use heavily.
ignore = ["F403"]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["bayes3d"]
namespaces = false
[tool.setuptools.dynamic]
optional-dependencies = {dev = { file = ["requirements-dev.txt"] }}