Skip to content

Commit 1747100

Browse files
authored
Merge pull request #190 from colinoflynn/long_description
Add long description
2 parents 6db62b7 + 93cad56 commit 1747100

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
from setuptools import setup
22
import versioneer
33

4+
5+
with open('README.md') as readme_file:
6+
long_description = readme_file.read()
7+
8+
49
setup(
510
name='picoscope',
611
version=versioneer.get_version(),
712
description="Unofficial python wrapper for the PicoScope devices.",
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
815
author="Colin O'Flynn, Mark Harfouche",
916
1017
license='BSD',

0 commit comments

Comments
 (0)