We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34e0cb commit 4a8832cCopy full SHA for 4a8832c
setup.py
@@ -1,7 +1,10 @@
1
#!/usr/bin/env python
2
import os
3
+import sys
4
+
5
from setuptools import setup
6
7
8
ROOT_DIR = os.path.dirname(__file__)
9
SOURCE_DIR = os.path.join(ROOT_DIR)
10
@@ -11,6 +14,9 @@
11
14
'websocket-client >= 0.32.0',
12
15
]
13
16
17
+if sys.platform == 'win32':
18
+ requirements.append('pypiwin32 >= 219')
19
20
extras_require = {
21
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
22
':python_version < "3.3"': 'ipaddress >= 1.0.16',
win32-requirements.txt
@@ -0,0 +1,2 @@
+-r requirements.txt
+pypiwin32==219
0 commit comments