mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
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)
12 lines
317 B
Python
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",
|
|
)
|
|
|
|
|