Psycojoker / prosopopee

a static website generator to make beautiful customizable pictures galleries that tell a story
http://prosopopee.readthedocs.org
GNU General Public License v3.0
318 stars 55 forks source link

implement include option #119

Closed gangelop closed 3 years ago

gangelop commented 3 years ago

This enables the inclusion of files with an include option. These files will be copied as is from the root of your project directory to the build directory. Example::

title: My photos
sub_title: wow
include:
    - robots.txt
    - .well-known/brave-rewards-verification.txt

This code is python3 only because of os.makedirs().

gangelop commented 3 years ago

This code is python3 only because of os.makedirs().

Ok, I thought I saw a comment in some GitHub issue about the project still being in python2 but I see travis is configured for 3.

Psycojoker commented 3 years ago

Ok, I thought I saw a comment in some GitHub issue about the project still being in python2 but I see travis is configured for 3.

Indeed we've migrated to python 3 quite some time ago (I've also forgot myself :sweat_smile: ) https://prosopopee.readthedocs.io/en/latest/changelog.html version 0.6 and I think we can totally not care about python 2 anymore (if we still did).

Psycojoker commented 3 years ago

Thx again!