Skip to content

Commit e609e9a

Browse files
committed
Require setuptools>=39.2.0
1 parent 1390392 commit e609e9a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[metadata]
2+
version = attr: jose.__version__
3+
14
[flake8]
25
max-line-length = 119
36

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def _cryptography_version():
4747

4848
setup(
4949
name='python-jose',
50-
version=jose.__version__,
5150
author='Michael Davis',
5251
author_email='mike.philip.davis@gmail.com',
5352
description='JOSE implementation in Python',
@@ -71,7 +70,10 @@ def _cryptography_version():
7170
'Topic :: Utilities',
7271
],
7372
extras_require=extras_require,
74-
setup_requires=['pytest-runner'],
73+
setup_requires=[
74+
'pytest-runner',
75+
'setuptools>=39.2.0',
76+
],
7577
tests_require=[
7678
'six',
7779
'ecdsa',

0 commit comments

Comments
 (0)