Skip to content

Remove PyOpenSSL dependency #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from Aug 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: python
install:
- python setup.py develop
- pip install tox
script: tox -e $TOXENV
notifications:
Expand Down
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ mock==1.0.1
coverage
nose-exclude
tox
-r requirements.txt
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
license='Apache',
packages=find_packages(),
include_package_data=True,
install_requires=['google-api-python-client', 'pyopenssl', 'httplib2',
'python-dateutil'],
install_requires=[
'google-api-python-client',
'httplib2',
'python-dateutil'
],
author='Tyler Treat',
author_email='ttreat31@gmail.com',
classifiers=[
Expand Down