Skip to content

Commit 7410300

Browse files
setup.py: install package data
Package data is: templates, static files, translations, etc
1 parent 86e430b commit 7410300

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
packages=find_packages(exclude=["docs"]), # should find package easily
2626
install_requires=requirements,
2727

28+
# easiest way to install templates, static files, translation files etc.
29+
include_package_data=True,
30+
2831
# in case you want to have easy testing in future by `./setup.py test`
2932
# you'd need to work with setuptools documentation:
3033
# http://pythonhosted.org/setuptools/setuptools.html

0 commit comments

Comments
 (0)