Skip to content

Commit

Permalink
Release 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
beudbeud committed Sep 25, 2019
1 parent c7102fd commit 1826298
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/authors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ By chronological order:
* Julien Malik
* Titoko
* 0x010C
* QShulz
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,15 @@

from setuptools import setup

try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst', format='md')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()

with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='prosopopee',
version='0.8.2',
description='A static website generator that allows you to tell a story with your pictures',
author='Laurent Peuch',
long_description=read_md('README.md') + "\n\n\n" + open('docs/changelog.rst').read(),
long_description=long_description,
long_description_content_type="text/markdown",
author_email='[email protected]',
url='https://github.com/Psycojoker/prosopopee',
install_requires=open("./requirements.txt", "r").read().split(),
Expand Down

0 comments on commit 1826298

Please sign in to comment.