1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

Merge pull request #114 from venthur/namespace_package

treat templates, static, and content as namespace packages
This commit is contained in:
Bastian Venthur
2023-07-13 12:10:51 +02:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -5,7 +5,10 @@
* default theme: `img` have now `max-width: 100%` by default to avoid very
large images overflowing
* packaging: explicitly list `templates`, `static` and `content` as packages
instead of using package-data for setuptools
instead of relying on package-data for setuptools. additionally, created a
MANIFEST.in to add the contents of these directories here as well. the
automatic finding of namespace packages and packaga-data, currently does not
work as advertised in setuptools' docs
## [2.0.0] - 2023-06-16

3
MANIFEST.in Normal file
View File

@@ -0,0 +1,3 @@
recursive-include blag/content *
recursive-include blag/static *
recursive-include blag/templates *