add setup.py

This commit is contained in:
Andreas Zweili 2020-10-12 14:10:49 +02:00
parent df30b17985
commit 53f4fec2a1
1 changed files with 22 additions and 0 deletions

22
setup.py Normal file
View File

@ -0,0 +1,22 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="url2markdown",
version="0.0.1",
author="Nebucatnetzer",
author_email="andreas+pypi@zweili.ch",
description="A package to download the content of a wesbite as a Markdown file.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Nebucatnetzer/url2markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)