mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Make sure to still include themes/.
This commit is contained in:
parent
f8f09d4b5f
commit
18579ed0a6
1 changed files with 7 additions and 0 deletions
7
setup.py
7
setup.py
|
|
@ -48,6 +48,13 @@ setup(
|
|||
long_description=description,
|
||||
packages=find_packages(),
|
||||
include_package_data=True, # includes all in MANIFEST.in if in package
|
||||
# NOTE : This will collect any files that happen to be in the themes
|
||||
# directory, even though they may not be checked into version control.
|
||||
package_data={ # pelican/themes is not a package, so include manually
|
||||
'pelican': [relpath(join(root, name), 'pelican')
|
||||
for root, _, names in walk(join('pelican', 'themes'))
|
||||
for name in names],
|
||||
},
|
||||
install_requires=requires,
|
||||
extras_require={
|
||||
'Markdown': ['markdown~=3.1.1']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue