-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (79 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
93 lines (79 loc) · 2.42 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "magbotsim"
description = "Magentic robotics simulation including reinforcement learning environments based on MuJoCo"
readme = "README.md"
requires-python = ">= 3.11, <3.14"
authors = [{ name = "Lara Bergmann", email = "lara.bergmann@uni-bielefeld.de" }]
keywords = ["Magnetic Robotics", "Reinforcement Learning", "Gymnasium", "PettingZoo", "RL", "AI", "Robotics", "Magnetic Levitation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"numpy",
"matplotlib",
"gymnasium>=0.29.1",
"pettingzoo",
"mujoco>=3.1.2",
"imageio",
"scipy",
"shapely"
]
dynamic = ["version"]
[project.optional-dependencies]
manual_control = [
"pygame"
]
tests = [
"pytest",
"ruff",
]
docs = [
"sphinx",
"sphinx-autobuild",
"sphinxcontrib.spelling",
"pydata-sphinx-theme",
"sphinx-copybutton",
"sphinxcontrib-video"
]
[project.entry-points."gymnasium.envs"]
__root__ = "magbotsim.__init__:register_gymnasium_envs"
[project.urls]
Homepage = "https://www.uni-bielefeld.de/fakultaeten/technische-fakultaet/arbeitsgruppen/kollaborative-robotik/"
Repository = "https://github.com/ubi-coro/MagBotSim"
Documentation = "https://ubi-coro.github.io/MagBotSim/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
magbotsim = [
"assets/**/*.xml",
"assets/**/*.stl",
"assets/**/*.STL",
"assets/**/*.obj",
"assets/**/*.png",
]
# ruff
[tool.ruff]
line-length = 140
indent-width = 4
[tool.ruff.format]
# Use single quotes for strings.
quote-style = "single"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.lint]
# See https://beta.ruff.rs/docs/rules/
select = ["E", "F", "B", "D", "UP", "RUF"]
ignore = ["B028", "D100", "D101", "D103", "D104", "D107", "D203", "D205", "D213", "D301", "D401", "D407", "D414", "RUF012", "RUF013"]