Codebase list python-jwcrypto / 81288c7
Release 0.9 Signed-off-by: Simo Sorce <simo@redhat.com> Simo Sorce 2 years ago
4 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
2525 test:
2626 rm -f .coverage
2727 tox -e py27
28 tox -e py35 --skip-missing-interpreter
2928 tox -e py36 --skip-missing-interpreter
3029 tox -e py37 --skip-missing-interpreter
30 tox -e py38 --skip-missing-interpreter
31 tox -e py39 --skip-missing-interpreter
3132
3233 DOCS_DIR = docs
3334 .PHONY: docs
5454 # The short X.Y version.
5555 version = '0.9'
5656 # The full version, including alpha/beta/rc tags.
57 release = '0.9.dev1'
57 release = '0.9'
5858
5959 # The language for content autogenerated by Sphinx. Refer to documentation
6060 # for a list of supported languages.
55
66 setup(
77 name = 'jwcrypto',
8 version = '0.9.dev1',
8 version = '0.9',
99 license = 'LGPLv3+',
1010 maintainer = 'JWCrypto Project Contributors',
1111 maintainer_email = 'simo@redhat.com',
1414 description = 'Implementation of JOSE Web standards',
1515 classifiers = [
1616 'Programming Language :: Python :: 2.7',
17 'Programming Language :: Python :: 3.4',
18 'Programming Language :: Python :: 3.5',
1917 'Programming Language :: Python :: 3.6',
2018 'Programming Language :: Python :: 3.7',
2119 'Programming Language :: Python :: 3.8',
20 'Programming Language :: Python :: 3.9',
2221 'Intended Audience :: Developers',
2322 'Topic :: Security',
2423 'Topic :: Software Development :: Libraries :: Python Modules'
00 [tox]
1 envlist = lint,py27,py35,py36,py37,pep8py2,pep8py3,doc,sphinx
1 envlist = lint,py27,py36,py37,py38,py39,pep8py2,pep8py3,doc,sphinx
22 skip_missing_interpreters = true
33
44 [testenv]