-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
42 lines (36 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "ir-sim"
version = "2.3.0"
authors = [
{ name="Han Ruihua", email="[email protected]" },
]
description = "Open-source, lightweight robot 2D simulator based on Python, specifically designed for intelligent robotics navigation and learning."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ['matplotlib==3.9.0',
'shapely==2.0.6',
'numpy',
'pyyaml',
'imageio',
'loguru',
'tabulate',
]
[project.optional-dependencies]
keyboard = ['pynput']
all = ['pynput']
[tool.setuptools.packages.find]
include = ["irsim*"]
exclude = ["doc*", "tests*"]
[tool.setuptools.package-data]
"*" = ["*.png", "*.yaml"]
[project.urls]
"Homepage" = "https://github.com/hanruihua/ir-sim"