From 219e4b99262db50aa027bf29124810571b927837 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 16 Sep 2018 20:06:57 -0700 Subject: [PATCH] Use readme as long_description --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index fb5c7cc..e222780 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,14 @@ from setuptools import setup import float_raster +with open('README.md', 'r') as f: + long_description = f.read() + setup(name='float_raster', version=float_raster.version, description='High-precision anti-aliasing polygon rasterizer', + long_description=long_description, + long_description_content_type='text/markdown', author='Jan Petykiewicz', author_email='anewusername@gmail.com', url='https://mpxd.net/gogs/jan/float_raster',