-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.27 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
[project]
name = "simulink_gym"
description = "Gym Interface Wrapper for Simulink Models"
readme = "Readme.md"
requires-python = ">=3.8"
keywords = ["reinforcement learning", "gym", "Matlab", "Simulink"]
license = {file = "License"}
authors = [
{name="Johannes Brust", email="[email protected]"},
]
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"gym == 0.21.0",
"numpy",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "ruff"]
wandb = ["wandb"]
examples = ["stable-baselines3", "rich", "tqdm", "tensorboard", "notebook"]
all = ["black",
"ruff",
"wandb",
"stable-baselines3",
"rich",
"tqdm",
"tensorboard",
"notebook"]
[project.urls]
"Homepage" = "https://github.com/johbrust/simulink_gym"
"Bug Tracker" = "https://github.com/johbrust/simulink_gym/issues"
"Project Management" = "https://quire.io/w/Simulink_Gym"
[tool.setuptools]
packages = ["simulink_gym", "simulink_gym.utils", "simulink_block_lib"]
[tool.setuptools.dynamic]
version = {attr = "simulink_gym.__version__"}
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"