From 3cd26265bd7958d0ed6bf728462b8a336c64cb9e Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 16 Sep 2018 20:14:42 -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 c3792b8..1801423 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,14 @@ from setuptools import setup, find_packages import opencl_fdfd +with open('README.md', 'r') as f: + long_description = f.read() + setup(name='opencl_fdfd', version=opencl_fdfd.version, description='OpenCL FDFD solver', + long_description=long_description, + long_description_content_type='text/markdown', author='Jan Petykiewicz', author_email='anewusername@gmail.com', url='https://mpxd.net/code/jan/opencl_fdfd',