-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (27 loc) · 1019 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
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pelican-encrypt-content",
version="1.0",
author="Sean Stewart",
author_email="sean@mindcruzer.com",
description="A pelican plugin to password protect articles and posts.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mindcruzer/pelican-encrypt-content",
packages=find_namespace_packages(include=['pelican.*']),
data_files=[
("", ["LICENSE.txt"]),
("pelican/plugins/encrypt_content", ["pelican/plugins/encrypt_content/decrypt-form.tpl.html"])
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Pelican"
],
install_requires=['pycryptodome>=3.9.7,<4'],
python_requires='>=3.8'
)