Skip to content

Commit

Permalink
Added Zenoh secutiry configuration package
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde committed Jan 10, 2025
1 parent 1f2d675 commit 0c2f3be
Show file tree
Hide file tree
Showing 8 changed files with 672 additions and 0 deletions.
1 change: 1 addition & 0 deletions zenoh_security_configuration/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# zenoh security configuration
16 changes: 16 additions & 0 deletions zenoh_security_configuration/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>zenoh_security_configuration</name>
<version>0.3.0</version>
<description>This package generates zenoh secutiry configurations</description>
<maintainer email="[email protected]">Alejandro Hernanadez</maintainer>
<license>Apache License 2.0</license>

<depend>python3-jsonschema</depend>
<depend>python3-yaml</depend>

<export>
<build_type>ament_python</build_type>
</export>
</package>
Empty file.
4 changes: 4 additions & 0 deletions zenoh_security_configuration/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[develop]
script_dir=$base/lib/zenoh_security_configuration
[install]
install_scripts=$base/lib/zenoh_security_configuration
31 changes: 31 additions & 0 deletions zenoh_security_configuration/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import os
from glob import glob
from setuptools import setup

package_name = 'zenoh_security_configuration'

setup(
name=package_name,
version='0.3.0',
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
[os.path.join('resource', package_name)]),
(os.path.join('share', package_name), ['package.xml']),
(os.path.join('share', package_name, 'templates'),
glob('templates/*.json5')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='alejandro',
maintainer_email='[email protected]',
description='This package generates zenoh secutiry configurations',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'zenoh_security_configuration = \
zenoh_security_configuration.zenoh_security_configuration:main'
],
},
)
Loading

0 comments on commit 0c2f3be

Please sign in to comment.