Skip to content

Commit 7b67374

Browse files
authored
Ensure __doc__ is set at the top to make sure description is set on PyPI
1 parent b21cf7e commit 7b67374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
"A simple interface to GPIO devices with Raspberry Pi."
2+
13
import io
24
import os
35
import sys
46
import errno
57
from setuptools import setup, find_packages
68

7-
"A simple interface to GPIO devices with Raspberry Pi."
8-
99
if sys.version_info[0] == 2:
1010
if not sys.version_info >= (2, 7):
1111
raise ValueError('This package requires Python 2.7 or above')

0 commit comments

Comments
 (0)