mirror of
https://github.com/haidaraM/ansible-playbook-grapher
synced 2024-11-10 06:04:15 +00:00
fix bug where the data files are not included in the package
This commit is contained in:
parent
6e5d062320
commit
29188a2d57
2 changed files with 5 additions and 0 deletions
3
MANIFEST.in
Normal file
3
MANIFEST.in
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Include the data files
|
||||
include Readme.md
|
||||
include ansibleplaybookgrapher/data/*
|
2
setup.py
2
setup.py
|
@ -15,6 +15,8 @@ setup(name="ansible-playbook-grapher",
|
|||
license="MIT",
|
||||
install_requires=['graphviz', 'colour'],
|
||||
packages=find_packages(exclude=['tests']),
|
||||
package_data={"ansible-playbook-grapher": ['data/*']},
|
||||
include_package_data=True,
|
||||
download_url="https://github.com/haidaraM/ansible-playbook-grapher/archive/v" + __version__ + ".tar.gz",
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
|
|
Loading…
Reference in a new issue