Skip to content

Commit

Permalink
Switch from 'include_package_data' to 'package_data' (#1039)
Browse files Browse the repository at this point in the history
The former results in quite a few warning messages during the package
build with modern setuptools.
  • Loading branch information
cottsay committed May 25, 2024
1 parent 0b97c90 commit 1f289d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,18 @@
# - stdeb.cfg
'version': '3.0.1-master',
'packages': find_packages(exclude=['test']),
'package_data': {
'ros_buildfarm.templates': [
'*/*/*.css',
'*.em',
'*/*.em',
'*/*/*.em',
'*/*.groovy',
'*/*/*.js',
'*/*/*.parser',
],
},
'scripts': scripts,
'include_package_data': True,
'zip_safe': False,
'install_requires': [
'empy<4',
Expand Down

0 comments on commit 1f289d7

Please sign in to comment.