forked from lesunb/HMRSsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.07 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
[tool.poetry]
name = "HMRsim_lesunb"
packages = [
{ include = "simulator", from = "src" }
]
version = "0.0.1-3"
description = "Lightweight, modular multi-robot simulator"
authors = ["Gguidini <giovanni.guidini@gmail.com>", "CristianeNaves <cristianenavescardoso09@gmail.com>", "gabrielsr <gabrielsr@gmail.com>"]
license = "GPLv3"
readme = "README.md"
homepage = "https://github.com/lesunb/HMRSsim"
repository = "https://github.com/lesunb/HMRSsim"
documentation = "https://github.com/lesunb/HMRSsim/wiki"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
pyrebase4 = "*"
pyyaml = "^5.3.0"
click = "^8.0.0"
python-dotenv = "^0.19.2"
esper = "1.3"
collision = "1.2.2"
simpy = "^4.0"
colorama = "^0.4.4"
pyglet = "^1.5.22"
urdf-parser-py = "^0.0.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "*"
pytest-cov = "*"
autopep8 = "*"
codacy-coverage = "*"
pytest-bdd = "*"
codecov = "*"
pep8 = "*"
[tool.poetry.scripts]
hmrsimcli = "simulator.hmrsim_cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"