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',