-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
34 lines (31 loc) · 1.02 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
32
33
34
#!/usr/bin/python
# -*- coding:Utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="prosopopee",
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="[email protected]",
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",
],
},
)