Skip to content

Commit

Permalink
Fix: add find_packages
Browse files Browse the repository at this point in the history
Signed-off-by: h-suzuki <h-suzuki@isp.co.jp>
  • Loading branch information
h-suzuki-isp committed Feb 27, 2024
1 parent ace4d34 commit b4581ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions setup.cfg

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from __future__ import annotations

from setuptools import setup
from setuptools import setup, find_packages


package_name = 'ros2caret'

setup(
name=package_name,
version='0.5.0',
packages=[package_name],
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
Expand Down

0 comments on commit b4581ae

Please sign in to comment.