-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring rqt_topic rewrite together, use in main
Signed-off-by: Evan Flynn <[email protected]>
- Loading branch information
1 parent
de5727f
commit 2e58b38
Showing
4 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from setuptools import setup | ||
|
||
package_name = 'rqt_topic' | ||
package_name = "rqt_topic" | ||
setup( | ||
name=package_name, | ||
version='1.7.1', | ||
package_dir={'': 'src'}, | ||
package_dir={'': '.'}, | ||
packages=[ | ||
package_name, | ||
f'{package_name}/models', | ||
|
@@ -18,27 +18,27 @@ | |
('share/' + package_name, ['package.xml']), | ||
('share/' + package_name, ['plugin.xml']), | ||
], | ||
install_requires=['setuptools'], | ||
install_requires=["setuptools"], | ||
zip_safe=True, | ||
author='Dorian Scholz', | ||
maintainer='Brandon Ong', | ||
maintainer_email='[email protected]', | ||
keywords=['ROS'], | ||
author="Dorian Scholz", | ||
maintainer="Brandon Ong", | ||
maintainer_email="[email protected]", | ||
keywords=["ROS"], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development', | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development", | ||
], | ||
description=( | ||
'rqt_topic provides a GUI plugin for displaying debug information about ROS topics ' | ||
'including publishers, subscribers, publishing rate, and ROS Messages.' | ||
"rqt_topic provides a GUI plugin for displaying debug information about ROS topics " | ||
"including publishers, subscribers, publishing rate, and ROS Messages." | ||
), | ||
license='BSD', | ||
tests_require=['pytest'], | ||
license="BSD", | ||
tests_require=["pytest"], | ||
entry_points={ | ||
'console_scripts': [ | ||
'rqt_topic = ' + package_name + '.main:main', | ||
"console_scripts": [ | ||
"rqt_topic = " + package_name + ".main:main", | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters