README/setup.py: update to reflect py3.8 compatibility

This commit is contained in:
Brian Warner 2020-04-04 14:25:47 -07:00
parent 379b931a09
commit 2420150794
2 changed files with 11 additions and 2 deletions

View File

@ -26,9 +26,10 @@ or the docs/ subdirectory.
## License, Compatibility
This library is released under the MIT license, see LICENSE for details.
Magic-Wormhole is released under the MIT license, see the `LICENSE` file for details.
This library is compatible with python2.7, 3.5, 3.6, and 3.7.
This library is compatible with Python 3.5 and higher (tested against 3.5,
3.6, 3.7, and 3.8). It also still works with Python 2.7.
## Packaging, Installation

View File

@ -8,6 +8,14 @@ trove_classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",