-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 922 Bytes
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
[build-system]
requires = [
"setuptools",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "robotodo-core"
dynamic = ["version"]
requires-python = ">=3.11"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
# TODO
"bracex",
"wcmatch",
# TODO
"einops",
"scipy",
# TODO utils
"numpy",
# TODO tensorspecs: move to separate package
"jax",
"jaxtyping",
]
# TODO refactor once we move the submodules into packages!!!!!
[project.optional-dependencies]
test = [
"pytest",
]
lint = [
"ruff",
]
[tool.setuptools.packages.find]
where = ["packages"]
namespaces = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["packages"]
addopts = "--import-mode=importlib --doctest-modules"
[tool.ruff]
line-length = 80
indent-width = 4
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"