Use readme as long_description
This commit is contained in:
parent
756c015b87
commit
219e4b9926
5
setup.py
5
setup.py
@ -3,9 +3,14 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import float_raster
|
import float_raster
|
||||||
|
|
||||||
|
with open('README.md', 'r') as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
setup(name='float_raster',
|
setup(name='float_raster',
|
||||||
version=float_raster.version,
|
version=float_raster.version,
|
||||||
description='High-precision anti-aliasing polygon rasterizer',
|
description='High-precision anti-aliasing polygon rasterizer',
|
||||||
|
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/gogs/jan/float_raster',
|
url='https://mpxd.net/gogs/jan/float_raster',
|
||||||
|
Loading…
Reference in New Issue
Block a user