-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (53 loc) · 2.33 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
48
49
50
51
52
53
54
55
56
[project]
name = "invariants-py"
version = "0.3.9" # note that it is possible for the build backend to manage versions in a dynamic way
description = "Calculate invariant trajectory representations from trajectory data and generate new trajectories from invariant representations"
authors = [ {name = "Maxim Vochten"},
{name = "Riccardo Burlizzi"},
{name = "Arno Verduyn"}
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["trajectory analysis", "trajectory generation", "invariant", "coordinate-invariant", "trajectory representation", "trajectory optimization", "trajectory planning", "robotics", "dynamics", "kinematics", "screw theory", "optimal control", "geometric optimal control", "differential geometry", "optimization", "casadi", "python"]
dependencies = [ # keep dependencies limited if possible, (you can also have optional dependencies)
"scipy",
"casadi>=3.6.7", # to use the fatrop solver we need casadi>=3.6.7
"PyQt5",
"matplotlib",
"numpy",
"ipython",
"numpy-stl",
"pandas",
"urdf2casadi",
"jupyter",
"yourdfpy"
]
classifiers = [ # these classifiers are used to add labels to the project on PyPI: https://pypi.org/project/invariants-py/
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
"Natural Language :: English"
]
[project.license]
text = "MIT License"
files = ["LICENSE"]
[project.urls]
Home-page = "https://trajectory-invariants.github.io/"
Documentation = "https://trajectory-invariants.github.io/docs/python/"
Repository = "https://github.com/trajectory-invariants/invariants_py"
Issues = "https://github.com/trajectory-invariants/invariants_py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"