2015-12-09 08:18:42 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding:Utf-8 -*-
|
|
|
|
|
2016-02-19 10:00:38 +01:00
|
|
|
import os
|
2015-12-09 08:18:42 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
2016-02-09 23:23:41 +01:00
|
|
|
try:
|
|
|
|
from pypandoc import convert
|
|
|
|
read_md = lambda f: convert(f, 'rst')
|
|
|
|
except ImportError:
|
|
|
|
print("warning: pypandoc module not found, could not convert Markdown to RST")
|
|
|
|
read_md = lambda f: open(f, 'r').read()
|
|
|
|
|
|
|
|
|
2015-12-09 08:18:42 +01:00
|
|
|
setup(name='prosopopee',
|
|
|
|
version='0.1',
|
2016-02-09 23:56:12 +01:00
|
|
|
description='exposure.co clone in a static web generating tool',
|
2015-12-09 08:18:42 +01:00
|
|
|
author='Laurent Peuch',
|
2016-02-09 23:23:41 +01:00
|
|
|
long_description=read_md('README.md'),
|
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-02-22 16:29:36 +01:00
|
|
|
'prosopopee': ['themes/*/*/*/*'] + ['themes/*/templates/*.html'] + ['themes/*/templates/section/*.html']
|
2015-12-09 08:25:09 +01:00
|
|
|
},
|
2015-12-09 08:18:42 +01:00
|
|
|
)
|