-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (33 loc) · 980 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from pathlib import Path
# Get the long description from the README file
ROOT_DIR = Path(__file__).parent
long_description = (ROOT_DIR / "README.md").read_text(encoding="utf-8")
setup(
name="motion_planning",
version="0.1.5",
author="Jiayuan Gu",
author_email="[email protected]",
keywords="robotics motion-planning",
description="A pythonic motion planning library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jiayuan-Gu/motion-planning",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"numpy",
"pin>=2.6.18",
"toppra>=0.6.0",
"lxml",
"beautifulsoup4",
"trimesh",
],
extras_require={
"tests": ["pytest", "black", "isort"],
"extra": ["meshcat"],
},
)
# python setup.py bdist_wheel
# twine upload dist/*