-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.py
31 lines (28 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/python
# -*- coding:Utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='prosopopee',
version='1.0.0',
description='A static website generator that allows you to tell a story with your pictures',
author='Laurent Peuch',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='cortex@worlddomination.be',
url='https://github.com/Psycojoker/prosopopee',
install_requires=open("./requirements.txt", "r").read().split(),
py_modules=[],
license= 'GPLv3+',
scripts=[],
entry_points={
'console_scripts': ['prosopopee = prosopopee.prosopopee:main']
},
keywords='',
include_package_data=True,
packages=['prosopopee'],
package_dir={'prosopopee': 'prosopopee'},
package_data={
'prosopopee': ['themes/*/*/*/*', 'themes/*/templates/*.html', 'themes/*/templates/feed.xml', 'themes/*/templates/section/*.html'],
},
)