fix: missing yaml during installation

This commit is contained in:
wznln
2025-04-18 15:16:00 +08:00
parent e638c33d89
commit 4a427bde61
2 changed files with 4 additions and 13 deletions

1
MANIFEST.in Normal file
View File

@@ -0,0 +1 @@
recursive-include unilabos/registry *.yaml

View File

@@ -1,6 +1,4 @@
from setuptools import setup, find_packages
from glob import glob
import os
package_name = 'unilabos'
@@ -8,21 +6,13 @@ setup(
name=package_name,
version='0.8.0',
packages=find_packages(),
# data_files=[
# ('share/ament_index/resource_index/packages',
# ['resource/' + package_name]),
# ('share/' + package_name, ['package.xml']),
# # (os.path.join('share', package_name, 'launch'), glob('launch/*.launch.py')),
# # (os.path.join('share', package_name, 'urdf'), glob('urdf/*')),
# # (os.path.join('share', package_name, 'meshes'), glob('meshes/*')),
# # (os.path.join('share', package_name, 'config'), glob('config/*'))
# ],
include_package_data=True,
install_requires=['setuptools'],
zip_safe=True,
maintainer='Junhan Chang',
maintainer_email='changjh@pku.edu.cn',
description='TODO: Package description',
license='TODO: License declaration',
description='',
license='GPL v3',
tests_require=['pytest'],
entry_points={
'console_scripts': [