-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 887 Bytes
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
[tool.poetry]
name = "arcle"
version = "0.2.6"
description = "An ARC Learning Environment built on Gymnasium"
authors = ["Hosung Lee <confeitohs@gmail.com>"]
readme = "docs/README.md"
license = "Apache-2.0"
repository = "https://github.com/ConfeitoHS/arcle"
packages = [{include = "arcle"}]
exclude = ["arcle/arcs/flask", "arcle/arcs/server"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.urls]
"Homepage" = "https://github.com/ConfeitoHS/arcle"
"Bug Tracker" = "https://github.com/ConfeitoHS/arcle/issues"
[tool.poetry.dependencies]
python = ">=3.8"
pygame = "^2.5.1"
gymnasium = ">=0.28.0"
numpy = ">=1.24"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"