Skip to content

Commit

Permalink
Require setuptools>=39.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blag committed Dec 19, 2019
1 parent 1390392 commit e609e9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
@@ -1,3 +1,6 @@
[metadata]
version = attr: jose.__version__

[flake8]
max-line-length = 119

Expand Down
6 changes: 4 additions & 2 deletions setup.py
Expand Up @@ -47,7 +47,6 @@ def _cryptography_version():

setup(
name='python-jose',
version=jose.__version__,
author='Michael Davis',
author_email='mike.philip.davis@gmail.com',
description='JOSE implementation in Python',
Expand All @@ -71,7 +70,10 @@ def _cryptography_version():
'Topic :: Utilities',
],
extras_require=extras_require,
setup_requires=['pytest-runner'],
setup_requires=[
'pytest-runner',
'setuptools>=39.2.0',
],
tests_require=[
'six',
'ecdsa',
Expand Down

0 comments on commit e609e9a

Please sign in to comment.