-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.56 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
[project]
name = "simulink_gym"
description = "Gym Interface Wrapper for Simulink Models"
readme = "Readme.md"
requires-python = ">=3.11"
keywords = ["reinforcement learning", "gym", "Matlab", "Simulink"]
license = {file = "License"}
authors = [
{name="Johannes Brust", email="johannes.brust@gmail.com"},
]
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"gymnasium>=1.0.0",
"loguru>=0.7.3",
"matlabengine>=24.2.2",
"numpy",
]
dynamic = ["version"]
[project.optional-dependencies]
examples = [
"stable-baselines3>=2.4.1",
"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.ruff]
line-length = 88
lint.select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I001", # isort
"PIE790", # Unnecessary pass statements
"D10", # Missing docstrings
"D213", # Multi-line docstring summary should start at the second line
"D400", # First line should end with a period
]
[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"
[dependency-groups]
dev = [
"ruff>=0.9.1",
]