From 0ac50f13835dcd220e9f136bab4811db443e1aca Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Wed, 8 Dec 2021 08:18:25 +0000 Subject: [PATCH] Add README to package metadata --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index fc329fa..c0712f6 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,16 @@ +import os.path import setuptools +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as fp: + readme = fp.read() + + setuptools.setup( name = 'snscrape', description = 'A social networking service scraper', + long_description = readme, + long_description_content_type = 'text/markdown', author = 'JustAnotherArchivist', url = 'https://github.com/JustAnotherArchivist/snscrape', classifiers = [