Release 0.8.2
This commit is contained in:
parent
c7102fdb17
commit
1826298328
@ -12,3 +12,4 @@ By chronological order:
|
|||||||
* Julien Malik
|
* Julien Malik
|
||||||
* Titoko
|
* Titoko
|
||||||
* 0x010C
|
* 0x010C
|
||||||
|
* QShulz
|
||||||
|
12
setup.py
12
setup.py
@ -3,19 +3,15 @@
|
|||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
try:
|
with open("README.md", "r") as fh:
|
||||||
from pypandoc import convert
|
long_description = fh.read()
|
||||||
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()
|
|
||||||
|
|
||||||
|
|
||||||
setup(name='prosopopee',
|
setup(name='prosopopee',
|
||||||
version='0.8.2',
|
version='0.8.2',
|
||||||
description='A static website generator that allows you to tell a story with your pictures',
|
description='A static website generator that allows you to tell a story with your pictures',
|
||||||
author='Laurent Peuch',
|
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='cortex@worlddomination.be',
|
author_email='cortex@worlddomination.be',
|
||||||
url='https://github.com/Psycojoker/prosopopee',
|
url='https://github.com/Psycojoker/prosopopee',
|
||||||
install_requires=open("./requirements.txt", "r").read().split(),
|
install_requires=open("./requirements.txt", "r").read().split(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user