Initial commit, add all current packages

This commit is contained in:
Tristan McGinnis
2025-02-18 11:52:25 -06:00
parent 9d04816994
commit eb466e11b7
63 changed files with 2313 additions and 0 deletions

26
src/core_pkg/setup.py Normal file
View File

@@ -0,0 +1,26 @@
from setuptools import find_packages, setup
package_name = 'core_pkg'
setup(
name=package_name,
version='0.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='tristan',
maintainer_email='tristanmcginnis26@gmail.com',
description='Core rover control package to handle command interpretation and embedded interfacing.',
license='All Rights Reserved',
tests_require=['pytest'],
entry_points={
'console_scripts': [
"core_control = core_pkg.core_control_node:main"
],
},
)