Skip to content

Commit

Permalink
Changed the package name, removed python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
armicron committed Sep 20, 2017
1 parent fc928c9 commit 65ed306
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
Expand Down
22 changes: 12 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
python-jose
python-jose-cryptodome
===========

A JOSE implementation in Python
A JOSE implementation in Python using pycryptodome instead pycrypto.
Stop using pycrypto use pycryptodome_.

|Build Status| |Coverage Status| |Docs|

Expand All @@ -19,17 +20,16 @@ to meet their needs.
Principles
----------

This is a JOSE implementation that is fully compatible with Google App Engine
which requires the use of the PyCrypto library.
This is a JOSE implementation that is not compatible with Google App Engine
as it uses pycryptodome.


Installation
------------

::

$ pip install python-jose

$ pip install python-jose-cryptodome

Usage
-----
Expand All @@ -49,11 +49,13 @@ Thanks

This library was originally based heavily on the work of the folks over at PyJWT_.

.. |Build Status| image:: https://travis-ci.org/mpdavis/python-jose.svg?branch=master
:target: https://travis-ci.org/mpdavis/python-jose
.. |Coverage Status| image:: http://codecov.io/github/mpdavis/python-jose/coverage.svg?branch=master
:target: http://codecov.io/github/mpdavis/python-jose?branch=master
.. |Build Status| image:: https://travis-ci.org/capless/python-jose-cryptodome.svg?branch=master
:target: https://travis-ci.org/capless/python-jose-cryptodome
.. |Coverage Status| image:: http://codecov.io/github/capless/python-jose-cryptodome/coverage.svg?branch=master
:target: http://codecov.io/github/capless/python-jose-cryptodome?branch=master
.. |Docs| image:: https://readthedocs.org/projects/python-jose/badge/
:target: https://python-jose.readthedocs.org/en/latest/
.. _ReadTheDocs: https://python-jose.readthedocs.org/en/latest/
.. _PyJWT: https://github.com/jpadilla/pyjwt
.. _pycryptodome: https://blog.sqreen.io/stop-using-pycrypto-use-pycryptodome/

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def get_install_requires():


setup(
name='python-jose',
name='python-jose-cryptodome',
version=jose.__version__,
author='Michael Davis',
author_email='[email protected]',
description='JOSE implementation in Python',
description='JOSE implementation in Python using pycryptodome',
license='MIT',
keywords='jose jws jwe jwt json web token security signing',
url='http://github.com/mpdavis/python-jose',
url='http://github.com/capless/python-jose-cryptodome',
packages=get_packages('jose'),
long_description=long_description,
classifiers=[
Expand All @@ -48,7 +48,6 @@ def get_install_requires():
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit 65ed306

Please sign in to comment.