Skip to content

Commit 0c9e648

Browse files
committed
Update setup.py to add SNI support
Closes sigmavirus24#186
1 parent f2a9ffb commit 0c9e648

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
#!/usr/bin/env python
32

43
import sys
54
import os
@@ -29,7 +28,8 @@
2928
os.system("python setup.py bdist_wheel sdist upload")
3029
sys.exit()
3130

32-
requires.extend(["requests >= 2.0", "uritemplate.py >= 0.2.0"])
31+
requires.extend(["requests >= 2.0", "uritemplate.py >= 0.2.0",
32+
"pyOpenSSL", "ndg-httpsclient", "pyasn1"])
3333

3434
__version__ = ''
3535
with open('github3/__init__.py', 'r') as fd:
@@ -51,7 +51,7 @@ def finalize_options(self):
5151
self.test_suite = True
5252

5353
def run_tests(self):
54-
#import here, cause outside the eggs aren't loaded
54+
# import here, cause outside the eggs aren't loaded
5555
import pytest
5656
errno = pytest.main(self.test_args)
5757
sys.exit(errno)

0 commit comments

Comments
 (0)