-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (29 loc) · 1015 Bytes
/
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
from setuptools import setup
with open("README.rst") as f:
long_description = f.read()
version = "1.0.0"
setup(
# Basic package information:
name="pelican-advthumbnailer",
version=version,
py_modules=("advthumbnailer",),
# Packaging options:
zip_safe=False,
include_package_data=True,
# Package dependencies:
install_requires=["pelican>=3.4.0", "beautifulsoup4>=4.3.2", "Pillow>=2.5.3"],
# Metadata for PyPI:
author="Alexandre Fonseca",
author_email="[email protected]",
license="Apache",
url="https://github.com/AlexJF/pelican-advthumbnailer",
download_url="https://github.com/AlexJF/pelican-advthumbnailer/archive/v{version}.zip".format(
version=version
),
keywords="pelican blog static thumbnail generation",
description=(
"A thumbnail generator for Pelican that operates by looking"
" at the filename of missing files to determine thumb format."
),
long_description=long_description,
)