ports/www/py-requests-oauthlib/files/patch-setup.py
Kubilay Kocak 69fedf0e45 www/py-requests-oauthlib: OAuthlib authentication support for Requests [NEW PORT]
This project provides first-class OAuth library support for Requests.

OAuth can seem overly complicated and it sure has its quirks. Luckily,
requests-oauthlib hides most of these and let you focus at the task at hand.

WWW: https://github.com/requests/requests-oauthlib

Approved by:	eadler, rm (mentors, implicit)
2013-05-13 12:38:41 +00:00

12 lines
317 B
Python

--- ./setup.py.orig 2013-05-04 16:37:49.000000000 +1000
+++ ./setup.py 2013-05-04 17:04:12.135652732 +1000
@@ -43,6 +43,9 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
+ zip_safe=False,
+ tests_require = ['mock'],
+ test_suite="tests",
)