-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.4 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
"cmake>=3.12",
"setuptools-git-versioning>=2.0,<3"
]
build-backend = "setuptools.build_meta"
[project]
name = 'marinholab-working-needlemanipulation'
authors = [
{name = "Murilo M. Marinho", email = "murilomarinho@ieee.org"}
]
maintainers = [
{name = "Murilo M. Marinho", email = "murilomarinho@ieee.org"}
]
dynamic = ["version"]
dependencies=[
'dqrobotics>=23.4.0a49',
'quadprog',
'termcolor',
'pyyaml'
]
description = "Ongoing work on needle manipulation in a collaboration between UTokyo and UoM."
readme = "README.md"
requires-python = ">= 3.9"
[tool.setuptools.package-data]
mypkg = ["*.yaml"]
# https://pypi.org/project/setuptools-git-versioning/
[tool.setuptools-git-versioning]
enabled = true
# https://stackoverflow.com/questions/73605607/how-to-use-setuptools-scm
dev_template = "{tag}.{ccount}"
dirty_template = "{tag}.{ccount}"
[project.scripts]
needlemanipulation_example = "marinholab.working.needlemanipulation.example:main"
needlemanipulation_example_load_from_file = "marinholab.working.needlemanipulation.example_load_from_file:main"
needlemanipulation_example_kinematics_from_coppeliasim = "marinholab.working.needlemanipulation.example_kinematics_from_coppeliasim:main"
needlemanipulation_example_create_needle_controller = "marinholab.working.needlemanipulation.example_create_needle_controller:main"