Skip to content

Commit f69fe34

Browse files
committed
Merge pull request tylertreat#65 from fusioneng/pyopenssl
Remove PyOpenSSL dependency
2 parents d4c63b3 + b391d40 commit f69fe34

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: python
22
install:
3+
- python setup.py develop
34
- pip install tox
45
script: tox -e $TOXENV
56
notifications:

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

requirements_dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ mock==1.0.1
44
coverage
55
nose-exclude
66
tox
7-
-r requirements.txt

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
license='Apache',
1212
packages=find_packages(),
1313
include_package_data=True,
14-
install_requires=['google-api-python-client', 'pyopenssl', 'httplib2',
15-
'python-dateutil'],
14+
install_requires=[
15+
'google-api-python-client',
16+
'httplib2',
17+
'python-dateutil'
18+
],
1619
author='Tyler Treat',
1720
author_email='ttreat31@gmail.com',
1821
classifiers=[

0 commit comments

Comments
 (0)