-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (43 loc) · 1.25 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
import pathlib
from itertools import chain
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
try:
README = (HERE / "README.md").read_text()
except FileNotFoundError: # symlink install
README = "Personal kdl_parser_py and ursdf_parser_py without ROS dependency."
package_name = 'kdl_parser_py'
# This call to setup() does all the work
setup(
name=package_name,
author="Ignacio Montesino",
author_email="monte.igna@gmail.com",
version="0.1",
description="Create PyKDL chains from URDF robot descriptions",
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
],
zip_safe=True,
maintainer='ignamonte',
maintainer_email='monte.igna@gmail.com',
long_description=README,
long_description_content_type="text/markdown",
license="BSD",
install_requires=[
#"PyKDL>=1.4.0",
"setuptools",
"PyYAML>=5.02",
"setuptools>=45.2.0"
],
tests_require=['pytest'],
entry_points={
'console_scripts': [
],
},
)