We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a9ffb commit 0c9e648Copy full SHA for 0c9e648
setup.py
@@ -1,5 +1,4 @@
1
# -*- coding: utf-8 -*-
2
-#!/usr/bin/env python
3
4
import sys
5
import os
@@ -29,7 +28,8 @@
29
28
os.system("python setup.py bdist_wheel sdist upload")
30
sys.exit()
31
32
-requires.extend(["requests >= 2.0", "uritemplate.py >= 0.2.0"])
+requires.extend(["requests >= 2.0", "uritemplate.py >= 0.2.0",
+ "pyOpenSSL", "ndg-httpsclient", "pyasn1"])
33
34
__version__ = ''
35
with open('github3/__init__.py', 'r') as fd:
@@ -51,7 +51,7 @@ def finalize_options(self):
51
self.test_suite = True
52
53
def run_tests(self):
54
- #import here, cause outside the eggs aren't loaded
+ # import here, cause outside the eggs aren't loaded
55
import pytest
56
errno = pytest.main(self.test_args)
57
sys.exit(errno)
0 commit comments