Add README to package metadata

This commit is contained in:
JustAnotherArchivist
2021-12-08 08:18:25 +00:00
parent c2257ad16e
commit 0ac50f1383

View File

@@ -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 = [