challenge_carry_my_luggage
setup.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 from setuptools import setup
4 from catkin_pkg.python_setup import generate_distutils_setup
5 
6 d = generate_distutils_setup(
7  # # don't do this unless you want a globally visible script
8  # scripts=['bin/myscript'],
9  packages=['challenge_carry_my_luggage'],
10  package_dir={'': 'src'},
11  # entry_points={
12  # "console_scripts": [
13  # "carry_my_luggage = challenge_carry_my_luggage.carry_my_luggage:main",
14  # ],
15  # },
16 )
17 
18 setup(**d)
setup