Laying some ground work
This commit is contained in:
parent
cccca32299
commit
eae67b8f93
0
pelican-peertube/__init.py__
Normal file
0
pelican-peertube/__init.py__
Normal file
25
setup.py
Normal file
25
setup.py
Normal 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={},
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user