[Python-modules-commits] [python-oauthlib] 04/07: Remove egg-info
Daniele Tricoli
eriol-guest at moszumanska.debian.org
Fri Jun 10 19:59:45 UTC 2016
This is an automated email from the git hooks/post-receive script.
eriol-guest pushed a commit to branch master
in repository python-oauthlib.
commit 07d807db009667b10069a6d789fb730eee385718
Author: Daniele Tricoli <eriol at mornie.org>
Date: Fri Jun 10 19:06:39 2016 +0200
Remove egg-info
---
.gitignore | 1 +
oauthlib.egg-info/PKG-INFO | 129 ---------------------------------
oauthlib.egg-info/SOURCES.txt | 104 --------------------------
oauthlib.egg-info/dependency_links.txt | 1 -
oauthlib.egg-info/requires.txt | 16 ----
oauthlib.egg-info/top_level.txt | 1 -
6 files changed, 1 insertion(+), 251 deletions(-)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..45149aa
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.egg-info/*
diff --git a/oauthlib.egg-info/PKG-INFO b/oauthlib.egg-info/PKG-INFO
deleted file mode 100644
index 81ee955..0000000
--- a/oauthlib.egg-info/PKG-INFO
+++ /dev/null
@@ -1,129 +0,0 @@
-Metadata-Version: 1.1
-Name: oauthlib
-Version: 1.1.2
-Summary: A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
-Home-page: https://github.com/idan/oauthlib
-Author: Ib Lundgren
-Author-email: ib.lundgren at gmail.com
-License: BSD
-Description: OAuthLib
- ========
-
- *A generic, spec-compliant, thorough implementation of the OAuth request-signing
- logic for python*
-
- .. image:: https://travis-ci.org/idan/oauthlib.png?branch=master
- :target: https://travis-ci.org/idan/oauthlib
- .. image:: https://coveralls.io/repos/idan/oauthlib/badge.png?branch=master
- :target: https://coveralls.io/r/idan/oauthlib
-
-
- OAuth often seems complicated and difficult-to-implement. There are several
- prominent libraries for handling OAuth requests, but they all suffer from one or
- both of the following:
-
- 1. They predate the `OAuth 1.0 spec`_, AKA RFC 5849.
- 2. They predate the `OAuth 2.0 spec`_, AKA RFC 6749.
- 3. They assume the usage of a specific HTTP request library.
-
- .. _`OAuth 1.0 spec`: http://tools.ietf.org/html/rfc5849
- .. _`OAuth 2.0 spec`: http://tools.ietf.org/html/rfc6749
-
- OAuthLib is a generic utility which implements the logic of OAuth without
- assuming a specific HTTP request object or web framework. Use it to graft OAuth
- client support onto your favorite HTTP library, or provide support onto your
- favourite web framework. If you're a maintainer of such a library, write a thin
- veneer on top of OAuthLib and get OAuth support for very little effort.
-
-
- Documentation
- --------------
-
- Full documentation is available on `Read the Docs`_. All contributions are very
- welcome! The documentation is still quite sparse, please open an issue for what
- you'd like to know, or discuss it in our `G+ community`_, or even better, send a
- pull request!
-
- .. _`G+ community`: https://plus.google.com/communities/101889017375384052571
- .. _`Read the Docs`: https://oauthlib.readthedocs.io/en/latest/index.html
-
- Interested in making OAuth requests?
- ------------------------------------
-
- Then you might be more interested in using `requests`_ which has OAuthLib
- powered OAuth support provided by the `requests-oauthlib`_ library.
-
- .. _`requests`: https://github.com/kennethreitz/requests
- .. _`requests-oauthlib`: https://github.com/requests/requests-oauthlib
-
- Which web frameworks are supported?
- -----------------------------------
-
- The following packages provide OAuth support using OAuthLib.
-
- - For Django there is `django-oauth-toolkit`_, which includes `Django REST framework`_ support.
- - For Flask there is `flask-oauthlib`_ and `Flask-Dance`_.
- - For Pyramid there is `pyramid-oauthlib`_.
-
- If you have written an OAuthLib package that supports your favorite framework,
- please open a Pull Request, updating the documentation.
-
- .. _`django-oauth-toolkit`: https://github.com/evonove/django-oauth-toolkit
- .. _`flask-oauthlib`: https://github.com/lepture/flask-oauthlib
- .. _`Django REST framework`: http://django-rest-framework.org
- .. _`Flask-Dance`: https://github.com/singingwolfboy/flask-dance
- .. _`pyramid-oauthlib`: https://github.com/tilgovi/pyramid-oauthlib
-
- Using OAuthLib? Please get in touch!
- ------------------------------------
- Patching OAuth support onto an http request framework? Creating an OAuth
- provider extension for a web framework? Simply using OAuthLib to Get Things Done
- or to learn?
-
- No matter which we'd love to hear from you in our `G+ community`_ or if you have
- anything in particular you would like to have, change or comment on don't
- hesitate for a second to send a pull request or open an issue. We might be quite
- busy and therefore slow to reply but we love feedback!
-
- Chances are you have run into something annoying that you wish there was
- documentation for, if you wish to gain eternal fame and glory, and a drink if we
- have the pleasure to run into eachother, please send a docs pull request =)
-
- .. _`G+ community`: https://plus.google.com/communities/101889017375384052571
-
- License
- -------
-
- OAuthLib is yours to use and abuse according to the terms of the BSD license.
- Check the LICENSE file for full details.
-
- Changelog
- ---------
-
- *OAuthLib is in active development, with the core of both OAuth 1 and 2
- completed, for providers as well as clients.* See `supported features`_ for
- details.
-
- .. _`supported features`: https://oauthlib.readthedocs.io/en/latest/feature_matrix.html
-
- For a full changelog see ``CHANGELOG.rst``.
-
-Platform: any
-Classifier: Development Status :: 4 - Beta
-Classifier: Environment :: Web Environment
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved
-Classifier: License :: OSI Approved :: BSD License
-Classifier: Operating System :: MacOS
-Classifier: Operating System :: POSIX
-Classifier: Operating System :: POSIX :: Linux
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.2
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: Implementation
-Classifier: Programming Language :: Python :: Implementation :: CPython
-Classifier: Programming Language :: Python :: Implementation :: PyPy
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/oauthlib.egg-info/SOURCES.txt b/oauthlib.egg-info/SOURCES.txt
deleted file mode 100644
index 0fe204d..0000000
--- a/oauthlib.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,104 +0,0 @@
-CHANGELOG.rst
-LICENSE
-MANIFEST.in
-README.rst
-setup.py
-oauthlib/__init__.py
-oauthlib/common.py
-oauthlib/signals.py
-oauthlib/uri_validate.py
-oauthlib.egg-info/PKG-INFO
-oauthlib.egg-info/SOURCES.txt
-oauthlib.egg-info/dependency_links.txt
-oauthlib.egg-info/requires.txt
-oauthlib.egg-info/top_level.txt
-oauthlib/oauth1/__init__.py
-oauthlib/oauth1/rfc5849/__init__.py
-oauthlib/oauth1/rfc5849/errors.py
-oauthlib/oauth1/rfc5849/parameters.py
-oauthlib/oauth1/rfc5849/request_validator.py
-oauthlib/oauth1/rfc5849/signature.py
-oauthlib/oauth1/rfc5849/utils.py
-oauthlib/oauth1/rfc5849/endpoints/__init__.py
-oauthlib/oauth1/rfc5849/endpoints/access_token.py
-oauthlib/oauth1/rfc5849/endpoints/authorization.py
-oauthlib/oauth1/rfc5849/endpoints/base.py
-oauthlib/oauth1/rfc5849/endpoints/pre_configured.py
-oauthlib/oauth1/rfc5849/endpoints/request_token.py
-oauthlib/oauth1/rfc5849/endpoints/resource.py
-oauthlib/oauth1/rfc5849/endpoints/signature_only.py
-oauthlib/oauth2/__init__.py
-oauthlib/oauth2/rfc6749/__init__.py
-oauthlib/oauth2/rfc6749/errors.py
-oauthlib/oauth2/rfc6749/parameters.py
-oauthlib/oauth2/rfc6749/request_validator.py
-oauthlib/oauth2/rfc6749/tokens.py
-oauthlib/oauth2/rfc6749/utils.py
-oauthlib/oauth2/rfc6749/clients/__init__.py
-oauthlib/oauth2/rfc6749/clients/backend_application.py
-oauthlib/oauth2/rfc6749/clients/base.py
-oauthlib/oauth2/rfc6749/clients/legacy_application.py
-oauthlib/oauth2/rfc6749/clients/mobile_application.py
-oauthlib/oauth2/rfc6749/clients/service_application.py
-oauthlib/oauth2/rfc6749/clients/web_application.py
-oauthlib/oauth2/rfc6749/endpoints/__init__.py
-oauthlib/oauth2/rfc6749/endpoints/authorization.py
-oauthlib/oauth2/rfc6749/endpoints/base.py
-oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
-oauthlib/oauth2/rfc6749/endpoints/resource.py
-oauthlib/oauth2/rfc6749/endpoints/revocation.py
-oauthlib/oauth2/rfc6749/endpoints/token.py
-oauthlib/oauth2/rfc6749/grant_types/__init__.py
-oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
-oauthlib/oauth2/rfc6749/grant_types/base.py
-oauthlib/oauth2/rfc6749/grant_types/client_credentials.py
-oauthlib/oauth2/rfc6749/grant_types/implicit.py
-oauthlib/oauth2/rfc6749/grant_types/refresh_token.py
-oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.py
-tests/__init__.py
-tests/test_common.py
-tests/oauth1/__init__.py
-tests/oauth1/rfc5849/__init__.py
-tests/oauth1/rfc5849/test_client.py
-tests/oauth1/rfc5849/test_parameters.py
-tests/oauth1/rfc5849/test_request_validator.py
-tests/oauth1/rfc5849/test_signatures.py
-tests/oauth1/rfc5849/test_utils.py
-tests/oauth1/rfc5849/endpoints/__init__.py
-tests/oauth1/rfc5849/endpoints/test_access_token.py
-tests/oauth1/rfc5849/endpoints/test_authorization.py
-tests/oauth1/rfc5849/endpoints/test_base.py
-tests/oauth1/rfc5849/endpoints/test_request_token.py
-tests/oauth1/rfc5849/endpoints/test_resource.py
-tests/oauth1/rfc5849/endpoints/test_signature_only.py
-tests/oauth2/__init__.py
-tests/oauth2/rfc6749/__init__.py
-tests/oauth2/rfc6749/test_parameters.py
-tests/oauth2/rfc6749/test_request_validator.py
-tests/oauth2/rfc6749/test_server.py
-tests/oauth2/rfc6749/test_tokens.py
-tests/oauth2/rfc6749/test_utils.py
-tests/oauth2/rfc6749/clients/__init__.py
-tests/oauth2/rfc6749/clients/test_backend_application.py
-tests/oauth2/rfc6749/clients/test_base.py
-tests/oauth2/rfc6749/clients/test_legacy_application.py
-tests/oauth2/rfc6749/clients/test_mobile_application.py
-tests/oauth2/rfc6749/clients/test_service_application.py
-tests/oauth2/rfc6749/clients/test_web_application.py
-tests/oauth2/rfc6749/endpoints/__init__.py
-tests/oauth2/rfc6749/endpoints/test_base_endpoint.py
-tests/oauth2/rfc6749/endpoints/test_client_authentication.py
-tests/oauth2/rfc6749/endpoints/test_credentials_preservation.py
-tests/oauth2/rfc6749/endpoints/test_error_responses.py
-tests/oauth2/rfc6749/endpoints/test_extra_credentials.py
-tests/oauth2/rfc6749/endpoints/test_resource_owner_association.py
-tests/oauth2/rfc6749/endpoints/test_revocation_endpoint.py
-tests/oauth2/rfc6749/endpoints/test_scope_handling.py
-tests/oauth2/rfc6749/endpoints/test_utils.py
-tests/oauth2/rfc6749/grant_types/__init__.py
-tests/oauth2/rfc6749/grant_types/test_authorization_code.py
-tests/oauth2/rfc6749/grant_types/test_client_credentials.py
-tests/oauth2/rfc6749/grant_types/test_implicit.py
-tests/oauth2/rfc6749/grant_types/test_refresh_token.py
-tests/oauth2/rfc6749/grant_types/test_resource_owner_password.py
-tests/unittest/__init__.py
\ No newline at end of file
diff --git a/oauthlib.egg-info/dependency_links.txt b/oauthlib.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/oauthlib.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/oauthlib.egg-info/requires.txt b/oauthlib.egg-info/requires.txt
deleted file mode 100644
index 50fb2a3..0000000
--- a/oauthlib.egg-info/requires.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-
-[rsa]
-cryptography
-
-[signals]
-blinker
-
-[signedtoken]
-cryptography
-pyjwt>=1.0.0
-
-[test]
-nose
-cryptography
-pyjwt>=1.0.0
-blinker
diff --git a/oauthlib.egg-info/top_level.txt b/oauthlib.egg-info/top_level.txt
deleted file mode 100644
index b5f3f0e..0000000
--- a/oauthlib.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-oauthlib
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-oauthlib.git
More information about the Python-modules-commits
mailing list