Skip to content
This repository was archived by the owner on Feb 17, 2022. It is now read-only.

Commit 47038d4

Browse files
authored
Use README.md as package description
1 parent 7bbd7eb commit 47038d4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"""Install config."""
33
from setuptools import setup
44

5+
with open('README.md') as f:
6+
long_description = f.read()
7+
58
setup(
69
name='pysndfx',
710
version='0.3.2',
@@ -10,6 +13,8 @@
1013
author='Carl Thomé',
1114
author_email='carlthome@gmail.com',
1215
license='MIT',
16+
long_description=long_description,
17+
long_description_content_type='text/markdown',
1318
classifiers=[
1419
'Development Status :: 3 - Alpha',
1520
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)