forked from CMU-Robotics-Club/RoboBuggy2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
283dae4
commit 4e00917
Showing
1 changed file
with
15 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
from glob import glob | ||
from glob import glob | ||
import os | ||
|
||
from setuptools import find_packages, setup | ||
|
||
package_name = 'buggy' | ||
package_name = "buggy" | ||
|
||
setup( | ||
name=package_name, | ||
version='0.0.0', | ||
packages=find_packages(exclude=['test']), | ||
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']), | ||
("share/ament_index/resource_index/packages", ["resource/" + package_name]), | ||
("share/" + package_name, ["package.xml"]), | ||
(os.path.join("share", package_name), glob("launch/*.xml")), | ||
], | ||
install_requires=['setuptools'], | ||
install_requires=["setuptools"], | ||
zip_safe=True, | ||
maintainer='root', | ||
maintainer_email='[email protected]', | ||
description='TODO: Package description', | ||
license='TODO: License declaration', | ||
tests_require=['pytest'], | ||
maintainer="root", | ||
maintainer_email="[email protected]", | ||
description="TODO: Package description", | ||
license="TODO: License declaration", | ||
tests_require=["pytest"], | ||
entry_points={ | ||
'console_scripts': [ | ||
'hello_world = buggy.hello_world:main' | ||
"console_scripts": [ | ||
"hello_world = buggy.hello_world:main", | ||
"buggy_state_converter = buggy.buggy_state_converter:main", | ||
], | ||
}, | ||
) |