forked from CLAIR-LAB-TECHNION/AIR_robots_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 922 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project] # defines all the package metadata
dynamic = ["dependencies"] # metadata to be read from a file or the package itself (see [tool.setuptools.dynamic])
name = "air2025"
version = "0.0.0"
authors = [
{ name = "Shiran Dapht", email = "[email protected]" },
{ name = "Sarah Keren", email = "[email protected]" },
]
description = "AIR 2024"
keywords = ["MuJoCo", "UR5E", "3D"]
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10"
]
[project.urls]
Repository = "https://github.com/CLAIR-LAB-TECHNION/AIR_robots_sim.git"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
include = ['sim_ur5*', 'motion_planner*']