-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
71 lines (61 loc) · 1.44 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
[build-system]
requires = ["setuptools>=64", "wheel", "cython"]
build-backend = 'setuptools.build_meta'
[tool.setuptools]
package-dir = {"" = "src"}
[project]
name = "jaxmapp"
description = "jax-based library for multi-agent path planning in continuous spaces"
readme = "README.md"
authors = [{ name = "Ryo Yonetani" }, { email = "ryo.yonetani@sinicx.com" }]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Framework :: Robot Framework :: Library",
"Framework :: Robot Framework :: Tool"
]
requires-python = ">=3.8.*"
dependencies = [
"jax==0.3.16",
"jaxlib==0.3.15",
"flax==0.6.0",
"hydra-core==1.2.0",
"tensorflow_probability==0.18.0",
"numpy",
"tqdm",
"tensorboardx",
"jupyterlab",
"matplotlib",
"seaborn",
"scikit-image",
"pymap2d",
"tqdm",
"timeout_decorator",
"joblib",
"numpy2tfrecord",
"cython",
]
version = "0.0.4"
[project.urls]
Homepage = "https://github.com/omron-sinicx/jaxmapp"
repository = "https://github.com/omron-sinicx/jaxmapp"
[project.optional-dependencies]
dev = [
"pytest",
"pysen==0.10.1",
"black==22.3.0",
"flake8==4.0.1",
"isort==5.10.1",
"mypy==0.910",
]
[tool.pysen]
version = "0.10.1"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
py_version = "py39"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]