forked from patrickloeber/snake-ai-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 871 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "snake_ai"
version = "0.0.1"
authors = [
{ name="Robin CREMESE", email="[email protected]" },
]
description = "Snake trained with reinforcement learning to navigate in a complex environment"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
#TODO : ajouter des contraintes sur les versions
dependencies = [
]
[project.urls]
"Homepage" = "https://github.com/rcremese/snake-ai"
[project.scripts]
play_snake = "snake_ai.wrappers.playable_snake:main"
simulate_diffusion = "snake_ai.physim.main:simulate_diffusion"
simulate_walkers = "snake_ai.physim.main:simulate_walkers"
autodiff = "snake_ai.physim.main:autodiff_simulation"