We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3094367 commit 9992edfCopy full SHA for 9992edf
setup.py
@@ -1,11 +1,17 @@
1
from distutils.core import setup
2
3
+from pathlib import Path
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
+
7
setup(
8
name="reddit-python-api",
9
packages=["redditpythonapi"],
10
version="0.2",
11
license="GPLv3",
12
description="A simple Reddit Python API",
13
+ long_description=long_description,
14
+ long_description_content_type="text/markdown",
15
author="Electronic Mango",
16
author_email="78230210+Electronic-Mango@users.noreply.github.com",
17
url="https://github.com/Electronic-Mango/reddit-python-api",
0 commit comments