-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (81 loc) · 1.83 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
82
83
84
85
86
87
88
89
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.0",
]
[project]
authors = [
{ email = "iamhelpingstar@gmail.com", name = "Wooseong Park" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"chex>=0.1.85",
"flax>=0.8.0",
"gymnax>=0.0.8",
"jax>=0.4.27",
"jaxlib>=0.4.27",
"jumanji>=1.0.0",
]
description = "A reinforcement learning environment for block puzzle games based on JAX."
dynamic = [
"version",
]
keywords = [
"RL-environment",
"block-puzzle",
"game-ai",
"jax",
"machine-learning",
"reinforcement learning",
]
name = "blockpuzzlax"
readme = "README.md"
requires-python = ">=3.10"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = [
"pre-commit>=3.3.3",
"pyright>=1.1.347",
"pytest==7.1.3",
"ruff>=0.1.6",
]
[project.urls]
Homepage = "https://github.com/helpingstar/blockpuzzlax"
Issues = "https://github.com/helpingstar/blockpuzzlax/issues"
[tool.pyright]
exclude = [
"**/__pycache__",
"**/node_modules",
]
include = [
"src/blockpuzzlax",
]
pythonPlatform = "All"
pythonVersion = "3.10"
reportMissingImports = "none"
reportMissingModuleSource = false
reportMissingTypeStubs = false
[tool.ruff]
exclude = [
"examples/*.ipynb",
]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
ignore = [
"F401",
]
[tool.setuptools.dynamic.version]
attr = "blockpuzzlax.__version__"