-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (29 loc) · 933 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-entities",
version=version,
py_modules=("entities",),
# Packaging options:
zip_safe=False,
include_package_data=True,
# Package dependencies:
install_requires=["pelican>=4,<5"],
# Metadata for PyPI:
author="Alexandre Fonseca",
author_email="alexandrejorgefonseca@gmail.com",
license="Apache",
url="https://github.com/AlexJF/pelican-entities",
download_url="https://github.com/AlexJF/pelican-entities/archive/v{version}.zip".format(
version=version
),
keywords="pelican blog static generic entities",
description=(
"A generator for Pelican, allowing the use of generic "
"entities in place of the default page and article ones"
),
long_description=long_description,
)