-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (62 loc) · 1.7 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
[tool.poetry]
name = "gym_sapientino"
version = "0.4.0"
description = "Gym Sapientino environment using Pygame."
authors = [
"Marco Favorito <favorito@diag.uniroma1.it>",
"Luca Iocchi <iocchi@diag.uniroma1.it>",
"Roberto Cipollone <cipollone@diag.uniroma1.it>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://whitemech.github.io/gym-sapientino"
repository = "https://github.com/whitemech/gym-sapientino.git"
documentation = "https://whitemech.github.io/gym-sapientino"
keywords = [
"grid-world",
"continuous state",
"reinforcement learning",
"gymnasium",
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
]
#packages = []
include = []
#[tool.poetry.scripts]
#script_name = 'path/to/script'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/whitemech/gym-sapientino/issues"
"Pull Requests" = "https://github.com/whitemech/gym-sapientino/pulls"
[tool.poetry.dependencies]
python = "^3.9"
gymnasium = ">=0.26.1,<0.30"
numpy = "^1.21.0"
pygame = "^2.2.0"
pillow = "^10.1.0"
markdown-include = "^0.8.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "^23.11.0"
pytest-cov = "^4.1.0"
pytest-randomly = "^3.15.0"
tox = "^4.9.0"
codecov = "^2.1.13"
isort = "^5.12.0"
bandit = "^1.7.5"
mypy = "^1.7.0"
safety = "^2.3.1"
ipython = "^8.17.2"
notebook = "^7.0.6"
flake8 = "^6.1.0"
mkdocs = "^1.5.3"
ruff-lsp = "^0.0.45"
pyright = "^1.1.335"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"