-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
79 lines (73 loc) · 2.05 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
[tool.isort]
profile = "black"
skip = [".gitignore", ".dockerignore"]
[tool.mypy]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["flashbax/*"]
[project]
name = "flashbax"
description = "Flashbax is an experience replay library oriented around JAX. Tailored to integrate seamlessly with JAX's Just-In-Time (JIT) compilation."
readme = "README.md"
authors = [
{name="InstaDeep" , email = "hello@instadeep.com"},
]
requires-python = ">=3.9"
version = "0.1.2"
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
keywords=["reinforcement-learning", "python", "jax", "memory"]
dependencies = [
'flax>=0.6.11',
'chex>=0.1.8',
'jax>=0.4.25',
'jaxlib>=0.4.20',
'numpy>=1.19.5',
'typing_extensions>=4.6.0',
'tensorstore>=0.1.51'
]
[project.optional-dependencies]
dev = [
'black>=23.7.0',
'coverage>=6.5.0',
'flake8>=6.0.0',
'isort>=5.12.0',
'mkdocs==1.5.3',
'mkdocs-git-revision-date-plugin==0.3.2',
'mkdocs-include-markdown-plugin==6.0.1',
'mkdocs-material==9.4.2',
'mkdocs-mermaid2-plugin==1.1.1',
'mkdocstrings[python]==0.23.0',
'mknotebooks==0.8.0',
'mypy>=1.8.0',
'pre-commit>=2.20.0',
'pytest>=7.4.2',
'pytest-cov>=4.00',
'pytest-xdist>=3.0.2'
]
examples = [
'distrax',
'dm-haiku',
'jumanji',
'jupyterlab',
'optax',
'rlax',
'matplotlib',
'seaborn',
'gymnasium',
]
[project.urls]
"Homepage" = "https://github.com/instadeepai/flashbax"
"Bug Tracker" = "https://github.com/instadeepai/flashbax/issues"
"Repository" = "https://github.com/instadeepai/flashbax.git"