[Python-modules-commits] [pyjwt] 10/13: Remove egg-info
Daniele Tricoli
eriol-guest at moszumanska.debian.org
Sun Sep 24 22:40:42 UTC 2017
This is an automated email from the git hooks/post-receive script.
eriol-guest pushed a commit to branch master
in repository pyjwt.
commit 80e9f75ed9ed8c54d70baf1779009bd50f924722
Author: Daniele Tricoli <eriol at mornie.org>
Date: Sun Sep 24 23:26:34 2017 +0200
Remove egg-info
---
.gitignore | 1 +
PyJWT.egg-info/PKG-INFO | 98 -------------------------------------
PyJWT.egg-info/SOURCES.txt | 67 -------------------------
PyJWT.egg-info/dependency_links.txt | 1 -
PyJWT.egg-info/entry_points.txt | 3 --
PyJWT.egg-info/requires.txt | 13 -----
PyJWT.egg-info/top_level.txt | 1 -
debian/clean | 1 +
8 files changed, 2 insertions(+), 183 deletions(-)
diff --git a/.gitignore b/.gitignore
index 539da74..127d15b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
*.py[co]
+*.egg-info/*
diff --git a/PyJWT.egg-info/PKG-INFO b/PyJWT.egg-info/PKG-INFO
deleted file mode 100644
index 406c49a..0000000
--- a/PyJWT.egg-info/PKG-INFO
+++ /dev/null
@@ -1,98 +0,0 @@
-Metadata-Version: 1.1
-Name: PyJWT
-Version: 1.5.3
-Summary: JSON Web Token implementation in Python
-Home-page: http://github.com/jpadilla/pyjwt
-Author: Jose Padilla
-Author-email: hello at jpadilla.com
-License: MIT
-Description-Content-Type: UNKNOWN
-Description: PyJWT
- =====
-
- .. image:: https://secure.travis-ci.org/jpadilla/pyjwt.svg?branch=master
- :target: http://travis-ci.org/jpadilla/pyjwt?branch=master
-
- .. image:: https://ci.appveyor.com/api/projects/status/h8nt70aqtwhht39t?svg=true
- :target: https://ci.appveyor.com/project/jpadilla/pyjwt
-
- .. image:: https://img.shields.io/pypi/v/pyjwt.svg
- :target: https://pypi.python.org/pypi/pyjwt
-
- .. image:: https://coveralls.io/repos/jpadilla/pyjwt/badge.svg?branch=master
- :target: https://coveralls.io/r/jpadilla/pyjwt?branch=master
-
- .. image:: https://readthedocs.org/projects/pyjwt/badge/?version=latest
- :target: https://pyjwt.readthedocs.io
-
- A Python implementation of `RFC
- 7519 <https://tools.ietf.org/html/rfc7519>`_. Original implementation
- was written by `@progrium <https://github.com/progrium>`_.
-
- Installing
- ----------
-
- Install with **pip**:
-
- .. code-block:: sh
-
- $ pip install PyJWT
-
-
- Usage
- -----
-
- .. code:: python
-
- >>> import jwt
- >>> encoded = jwt.encode({'some': 'payload'}, 'secret', algorithm='HS256')
- 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg'
-
- >>> jwt.decode(encoded, 'secret', algorithms=['HS256'])
- {'some': 'payload'}
-
-
- Command line
- ------------
-
- Usage::
-
- pyjwt [options] INPUT
-
- Decoding examples::
-
- pyjwt --key=secret TOKEN
- pyjwt --no-verify TOKEN
-
- See more options executing ``pyjwt --help``.
-
-
- Documentation
- -------------
-
- View the full docs online at https://pyjwt.readthedocs.io/en/latest/
-
-
- Tests
- -----
-
- You can run tests from the project root after cloning with:
-
- .. code-block:: sh
-
- $ python setup.py test
-
-Keywords: jwt json web token security signing
-Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Intended Audience :: Developers
-Classifier: Natural Language :: English
-Classifier: License :: OSI Approved :: MIT License
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: 3.5
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Topic :: Utilities
diff --git a/PyJWT.egg-info/SOURCES.txt b/PyJWT.egg-info/SOURCES.txt
deleted file mode 100644
index 1ac8284..0000000
--- a/PyJWT.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-AUTHORS
-CHANGELOG.md
-LICENSE
-MANIFEST.in
-README.rst
-setup.cfg
-setup.py
-tox.ini
-PyJWT.egg-info/PKG-INFO
-PyJWT.egg-info/SOURCES.txt
-PyJWT.egg-info/dependency_links.txt
-PyJWT.egg-info/entry_points.txt
-PyJWT.egg-info/requires.txt
-PyJWT.egg-info/top_level.txt
-jwt/__init__.py
-jwt/__main__.py
-jwt/algorithms.py
-jwt/api_jws.py
-jwt/api_jwt.py
-jwt/compat.py
-jwt/exceptions.py
-jwt/utils.py
-jwt/contrib/__init__.py
-jwt/contrib/algorithms/__init__.py
-jwt/contrib/algorithms/py_ecdsa.py
-jwt/contrib/algorithms/pycrypto.py
-tests/__init__.py
-tests/__init__.pyc
-tests/compat.py
-tests/compat.pyc
-tests/test_algorithms.py
-tests/test_api_jws.py
-tests/test_api_jwt.py
-tests/test_cli.py
-tests/test_compat.py
-tests/test_exceptions.py
-tests/test_jwt.py
-tests/test_utils.py
-tests/utils.py
-tests/utils.pyc
-tests/__pycache__/test_algorithms.cpython-27-PYTEST.pyc
-tests/__pycache__/test_api_jws.cpython-27-PYTEST.pyc
-tests/__pycache__/test_api_jwt.cpython-27-PYTEST.pyc
-tests/__pycache__/test_cli.cpython-27-PYTEST.pyc
-tests/__pycache__/test_compat.cpython-27-PYTEST.pyc
-tests/__pycache__/test_exceptions.cpython-27-PYTEST.pyc
-tests/__pycache__/test_jwt.cpython-27-PYTEST.pyc
-tests/__pycache__/test_utils.cpython-27-PYTEST.pyc
-tests/contrib/__init__.py
-tests/contrib/__init__.pyc
-tests/contrib/test_algorithms.py
-tests/contrib/__pycache__/test_algorithms.cpython-27-PYTEST.pyc
-tests/keys/__init__.py
-tests/keys/__init__.pyc
-tests/keys/jwk_ec_key.json
-tests/keys/jwk_ec_pub.json
-tests/keys/jwk_hmac.json
-tests/keys/jwk_rsa_key.json
-tests/keys/jwk_rsa_pub.json
-tests/keys/testkey2_rsa.pub.pem
-tests/keys/testkey_ec
-tests/keys/testkey_ec.pub
-tests/keys/testkey_ec_ssh.pub
-tests/keys/testkey_pkcs1.pub.pem
-tests/keys/testkey_rsa
-tests/keys/testkey_rsa.cer
-tests/keys/testkey_rsa.pub
\ No newline at end of file
diff --git a/PyJWT.egg-info/dependency_links.txt b/PyJWT.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/PyJWT.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/PyJWT.egg-info/entry_points.txt b/PyJWT.egg-info/entry_points.txt
deleted file mode 100644
index 78717b2..0000000
--- a/PyJWT.egg-info/entry_points.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-[console_scripts]
-pyjwt = jwt.__main__:main
-
diff --git a/PyJWT.egg-info/requires.txt b/PyJWT.egg-info/requires.txt
deleted file mode 100644
index ab8d687..0000000
--- a/PyJWT.egg-info/requires.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-
-[crypto]
-cryptography>=1.4
-
-[flake8]
-flake8
-flake8-import-order
-pep8-naming
-
-[test]
-pytest<4,>3
-pytest-cov
-pytest-runner
diff --git a/PyJWT.egg-info/top_level.txt b/PyJWT.egg-info/top_level.txt
deleted file mode 100644
index 27ccc9b..0000000
--- a/PyJWT.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-jwt
diff --git a/debian/clean b/debian/clean
index d531f04..4d8c750 100644
--- a/debian/clean
+++ b/debian/clean
@@ -1 +1,2 @@
debian/jwt3.1
+PyJWT.egg-info/*
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pyjwt.git
More information about the Python-modules-commits
mailing list