fc6119645e
- Patch setup.py to exclude tests from install (CONFLICT) [1][2] - pkg-descr: Tab->space in WWW: (portlint) - Bump PORTREVISION [1] This Python package uses packages=find_packages() with a tests module in the root that contains an __init__.py file, which results in the tests module being installed in site-packages. The correct way of including tests in a pypi package using sdist, while excluding tests in the root from being installed it to use: * packages = find_packages(exclude='tests'), * A MANIFEST.in containing "include tests/*" or equivalent [2] https://github.com/simplegeo/python-oauth2/issues/139 Reported by: antoine Approved by: maintainer (via Twitter)
14 lines
511 B
Text
14 lines
511 B
Text
This code was originally forked from Leah Culver and Andy Smith's
|
|
oauth.py code (see net/py-oauth).
|
|
|
|
A number of notable differences exist between this code and its
|
|
forefathers:
|
|
|
|
* 100% unit test coverage.
|
|
* The DataStore object has been completely ripped out.
|
|
* Classes are no longer prefixed with OAuth.
|
|
* The Request class now extends from dict.
|
|
* The library is likely no longer compatible with Python 2.3.
|
|
* The Client class works and extends from httplib2.
|
|
|
|
WWW: http://github.com/simplegeo/python-oauth2
|