forked from lukestroh/pybullet-tree-sim
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# [tool.hatch.metadata]
# allow-direct-references = true
# [tool.hatch.build.hooks.custom]
# path = "pybullet_tree_sim/utils/mesh_downloader.py"
[project]
name = "pybullet_tree_sim"
version = "0.0.1"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Abhinav Jain", email = "jainab@oregonstate.edu" },
{ name = "Luke Strohbehn", email = "luke.strohbehn@gmail.com" },
]
maintainers = [
{ name = "Abhinav Jain", email = "jainab@oregonstate.edu" },
{ name = "Luke Strohbehn", email = "luke.strohbehn@gmail.com" },
]
description = "A PyBullet package for simulating trees with the UR5 arm."
requires-python = ">=3.9"
dependencies = [
"gymnasium",
"modern_robotics",
"numpy==1.26.4",
"nptyping",
"opencv-python",
"pandas",
"plotly",
"pybullet==3.2.6",
"pywavefront",
"pyyaml",
'requests',
"scikit-image",
'tqdm',
"xacro",
"zenlog",
]
[project.scripts]
mesh_downloader = 'pybullet_tree_sim.utils.mesh_downloader:main'