Use readme as long_description
This commit is contained in:
parent
d0b303523e
commit
1de6fb0e39
5
setup.py
5
setup.py
@ -3,9 +3,14 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import opencl_fdtd
|
import opencl_fdtd
|
||||||
|
|
||||||
|
with open('README.md', 'r') as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
setup(name='opencl_fdtd',
|
setup(name='opencl_fdtd',
|
||||||
version=opencl_fdtd.version,
|
version=opencl_fdtd.version,
|
||||||
description='OpenCL FDTD solver',
|
description='OpenCL FDTD solver',
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author='Jan Petykiewicz',
|
author='Jan Petykiewicz',
|
||||||
author_email='anewusername@gmail.com',
|
author_email='anewusername@gmail.com',
|
||||||
url='https://mpxd.net/code/jan/opencl_fdtd',
|
url='https://mpxd.net/code/jan/opencl_fdtd',
|
||||||
|
Loading…
Reference in New Issue
Block a user