We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
py_modules
When using this argument to setup.py's setup() function catkin warns:
setup()
*** Arguments ['py_modules'] to setup() not supported in catkin devel space in setup.py of camera_info_manager_py
It ges installed into the install space, but it does not create a redirection placeholder for the devel space.
Since this is a core functionality of python's distribution system we should support it.
Here is an example setup.py:
from distutils.core import setup from catkin_pkg.python_setup import generate_distutils_setup d = generate_distutils_setup( py_modules=['camera_info_manager'], package_dir={'': 'src'} ) setup(**d)
The text was updated successfully, but these errors were encountered:
c468981
Merge pull request #564 from ros/py_modules
f94e61b
add support for py_modules in setup.py (fix #399)
dirk-thomas
No branches or pull requests
When using this argument to setup.py's
setup()
function catkin warns:It ges installed into the install space, but it does not create a redirection placeholder for the devel space.
Since this is a core functionality of python's distribution system we should support it.
Here is an example setup.py:
The text was updated successfully, but these errors were encountered: