We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1390392 + e609e9a commit a9f8554Copy full SHA for a9f8554
setup.cfg
@@ -1,3 +1,6 @@
1
+[metadata]
2
+version = attr: jose.__version__
3
+
4
[flake8]
5
max-line-length = 119
6
setup.py
@@ -47,7 +47,6 @@ def _cryptography_version():
47
48
setup(
49
name='python-jose',
50
- version=jose.__version__,
51
author='Michael Davis',
52
author_email='[email protected]',
53
description='JOSE implementation in Python',
@@ -71,7 +70,10 @@ def _cryptography_version():
71
70
'Topic :: Utilities',
72
],
73
extras_require=extras_require,
74
- setup_requires=['pytest-runner'],
+ setup_requires=[
+ 'pytest-runner',
75
+ 'setuptools>=39.2.0',
76
+ ],
77
tests_require=[
78
'six',
79
'ecdsa',
0 commit comments