Skip to content

Commit

Permalink
fix: update setup.py package data
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTenmann committed Dec 1, 2021
1 parent 1e87d25 commit b1dd192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
python_requires='>=3.7,<3.10',
package_dir={f'{PROJECT_NAME}': f'{SOURCE_DIR}/{PROJECT_NAME}'},
packages=find_packages(where=f'{SOURCE_DIR}', exclude=['tests', 'scripts']),
package_data={f'{PROJECT_NAME}': sorted(glob(f'data/*.json'))},
package_data={f'{PROJECT_NAME}': ['data/*.json']},
include_package_data=True
)

0 comments on commit b1dd192

Please sign in to comment.