-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
81 lines (72 loc) · 1.62 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "stac-mjx"
authors = [
{name = "Talmo Pereira", email = "[email protected]"}]
description="TBD"
requires-python = ">=3.11"
keywords = ["TBD"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"]
dependencies = [
"numpy<2.0",
"matplotlib",
"pandas",
"pip",
"black",
"ipykernel"]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "stac_mjx.version.__version__"}
readme = {file = ["README.md"], content-type="text/markdown"}
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-watch",
"black",
"pydocstyle",
"toml",
"twine",
"build",
"matplotlib",
"ipykernel",
"mujoco==3.2.2",
"mujoco-mjx==3.2.2",
"brax",
"opencv-python",
"wandb",
"mediapy",
"pynwb",
"dm_control==1.0.22",
"tqdm",
"numba",
"ndx_pose==0.1.1",
"hydra-core",
"imageio",
"h5py",
"flax[all]",
"optax[all]",
"jax[cuda12_pip]",
"imageio[pyav]",
"imageio[ffmpeg]",
]
[project.urls]
Homepage = "https://github.com/talmolab/stac-mjx"
Repository = "https://github.com/talmolab/stac-mjx"
[tool.setuptools.packages.find]
exclude = ["site"]
[tool.black]
line-length = 88
[pydocstyle]
convention = "google"
match-dir = "stac_mjx"
[tool.coverage.run]
source = ["livecov"]
[tool.pytest.ini_options]
addopts = "--cov stac_mjx --cov-report=lcov:lcov.info --cov-report=term"