Setup.py references fonts dir plural (#721)

The fonts are in `static/fonts`, but setup.py has been installing
`static/font`. That didn't seem to work for me. This changes setup.py to
match the actual directory.
This commit is contained in:
Leon Barrett
2019-02-13 11:54:51 -08:00
committed by Aaron Carlisle
parent 13a9010c31
commit ecbc09f22a

View File

@@ -25,7 +25,7 @@ setup(
'*.html', '*.html',
'static/css/*.css', 'static/css/*.css',
'static/js/*.js', 'static/js/*.js',
'static/font/*.*' 'static/fonts/*.*'
]}, ]},
include_package_data=True, include_package_data=True,
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package # See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package