mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-15 13:44:39 +00:00
fix: missing yaml during installation
This commit is contained in:
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@@ -0,0 +1 @@
|
||||
recursive-include unilabos/registry *.yaml
|
||||
16
setup.py
16
setup.py
@@ -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': [
|
||||
|
||||
Reference in New Issue
Block a user