-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
73 lines (64 loc) · 1.55 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
[build-system]
requires = ['setuptools']
[project]
name = 'rl-control-template'
version = '0.0.0'
description = ''
authors = [
{name = 'Parham Panahi', email = '[email protected]'},
{name = 'Andy Patterson', email = '[email protected]'},
{name = 'Niko Yasui', email = '[email protected]'}
]
requires-python = '>=3.11'
readme = 'README.md'
license = {text = 'MIT'}
classifiers = [
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
dependencies = [
# custom minatar with jit compiled environments
'MinAtar @ git+https://github.com/andnp/MinAtar',
'foragerenv @ git+https://github.com/andnp/forager',
'gymnasium[atari, box2d]>=1.0.0',
'optuna',
'ale_py',
'pillow',
'numba>=0.55.0',
'chex>=0.1.5',
'jax>=0.2.14',
'dm-haiku>=0.0.4',
'optax>=0.0.8',
'numpy>=1.22.0',
'PyFixedReps-andnp~=4.0',
'PyExpUtils-andnp~=7.0',
'pyrlenvs-andnp~=2.0',
'ReplayTables-andnp~=6.0',
'RlGlue-andnp~=1.0',
'RlEvaluation~=1.0',
'PyExpPlotting-andnp',
'matplotlib',
]
[project.optional-dependencies]
dev = [
'pip',
'ruff',
'pyright',
'commitizen',
'pre-commit',
]
[tool]
[tool.commitizen]
name = 'cz_conventional_commits'
version = '0.0.0'
tag_format = '$version'
version_files = ['pyproject.toml']
[tool.ruff.lint]
select = ['F', 'E', 'W', 'B']
ignore = ['E501', 'E701', 'B023']
[tool.pyright]
include = ['.']
venvPath = '.'
venv = '.venv'
typeCheckingMode = 'standard'
useLibraryCodeForTypes = true