2015-12-09 08:18:42 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding:Utf-8 -*-
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2019-09-25 11:18:12 +02:00
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
2016-02-09 23:23:41 +01:00
|
|
|
|
2015-12-09 08:18:42 +01:00
|
|
|
setup(name='prosopopee',
|
2019-09-25 11:00:29 +02:00
|
|
|
version='0.8.2',
|
2017-07-14 14:28:44 +02:00
|
|
|
description='A static website generator that allows you to tell a story with your pictures',
|
2015-12-09 08:18:42 +01:00
|
|
|
author='Laurent Peuch',
|
2019-09-25 11:18:12 +02:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2015-12-09 08:18:42 +01:00
|
|
|
author_email='cortex@worlddomination.be',
|
|
|
|
url='https://github.com/Psycojoker/prosopopee',
|
2015-12-09 08:20:24 +01:00
|
|
|
install_requires=open("./requirements.txt", "r").read().split(),
|
2015-12-09 08:45:41 +01:00
|
|
|
packages=['prosopopee'],
|
2015-12-09 08:18:42 +01:00
|
|
|
py_modules=[],
|
|
|
|
license= 'GPLv3+',
|
2015-12-09 08:45:41 +01:00
|
|
|
scripts=[],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['prosopopee = prosopopee.prosopopee:main']
|
|
|
|
},
|
2015-12-09 08:18:42 +01:00
|
|
|
keywords='',
|
2015-12-09 08:25:09 +01:00
|
|
|
include_package_data=True,
|
|
|
|
package_data={
|
2016-04-18 14:32:33 +02:00
|
|
|
'prosopopee': ['themes/*/*/*/*', 'themes/*/templates/*.html', 'themes/*/templates/feed.xml', 'themes/*/templates/section/*.html'],
|
2015-12-09 08:25:09 +01:00
|
|
|
},
|
2015-12-09 08:18:42 +01:00
|
|
|
)
|