We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a25369 commit 3f88ef5Copy full SHA for 3f88ef5
1 file changed
setup.py
@@ -15,7 +15,7 @@
15
elif sys.version_info[0] == 3:
16
base_dir = 'python3'
17
18
-setup(
+setup_dict = dict(
19
name='cobs',
20
version=_version.__version__,
21
description='Consistent Overhead Byte Stuffing (COBS)',
@@ -55,3 +55,11 @@
55
'Topic :: Communications',
56
],
57
)
58
+
59
+try:
60
+ setup(**setup_dict)
61
+except KeyboardInterrupt:
62
+ raise
63
+except:
64
+ del setup_dict['ext_modules']
65
0 commit comments