Laying some ground work

This commit is contained in:
Rain 2019-12-17 17:09:37 -05:00
parent cccca32299
commit eae67b8f93
2 changed files with 25 additions and 0 deletions

View File

25
setup.py Normal file
View File

@ -0,0 +1,25 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pelican-peertube",
version="0.1.0",
author="Melon Bread",
author_email="rain@melonbread.dev",
description="A PeerTube plugin for the Pelican static site generator",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords=["pelican", "peertube", "plugin"],
url="https://git.melonbread.xyz/rain/pelican-peertube",
packages=["pelican-peertube"],
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
entry_points={},
)