-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (30 loc) · 886 Bytes
/
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
[project]
name = "BriscolaBot"
description = "Mastering Briscola with model-free Deep Reinforcement Learning."
readme = "README.md"
requires-python = ">= 3.9"
authors = [{ name = "Lorenzo Cavuoti", email = "[email protected]" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "game", "RL", "AI", "gymnasium"]
dependencies = [
"numpy",
"gymnasium",
"pygame",
"onnxruntime",
"pettingzoo",
"torch",
"requests",
"scipy",
"wandb",
"pytest"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dynamic = ["version"]