Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
Fix package metadata missing in the package
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwight Hubbard committed Jun 22, 2015
1 parent 6ae8b25 commit 5fc2fe6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Expand Up @@ -6,6 +6,6 @@
include README.md


include sshmap/metadata.json
include sshmap/package_metadata.json
recursive-include scripts/ *
recursive-include sshmap/ *
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -129,7 +129,11 @@ def get_and_update_metadata():
'django_template': ['django'],
'all': ['django'],
},
install_requires=['paramiko>=1.13.0', 'hostlists>=0.6.9']
install_requires=['paramiko>=1.13.0', 'hostlists>=0.6.9'],
package_data={
'redislite': ['package_metadata.json', 'bin/redis-server'],
},
include_package_data=True,
)
if os.path.isdir('scripts'):
setup_arguments['scripts'] = [
Expand Down

0 comments on commit 5fc2fe6

Please sign in to comment.