-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "kinpy"
version = "0.5.6"
description = ""
authors = [{ name = "neka-nat", email = "nekanat.stock@gmail.com" }]
requires-python = ">=3.10,<3.14"
license = "MIT"
keywords = [
"robotics", "kinematics", "URDF", "SDF", "MJCF",
"jacobian", "inverse kinematics", "visualization", "VTK"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy>=1.26.4",
"scipy>=1.11.2",
"transformations>=2020.1.1",
"absl-py>=0.11.0",
"lxml>=5.0.0",
"PyYAML>=6.0.1",
"six>=1.17.0",
]
[dependency-groups]
dev = [
"isort>=5.9.3,<6",
"black>=22.6.0,<23",
"flake8>=5.0.4,<6",
"flake8-bugbear>=22.8.23,<23",
"flake8-simplify>=0.19.3,<0.20",
"mypy>=1.0.1,<2",
]
[project.optional-dependencies]
all = [
"vtk>=9.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/tests/**",
"/examples/**",
"/scripts/**",
"/assets/**",
]
[tool.hatch.build.targets.wheel]
packages = ["kinpy"]
force-include = { "kinpy/mjcf_parser/schema.xml" = "kinpy/mjcf_parser/schema.xml" }
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true