Add cheroot-8.2.1

This commit is contained in:
JonnyWong16
2019-11-23 19:03:04 -08:00
parent a2b686f6df
commit 8f6639028f
27 changed files with 7925 additions and 0 deletions

15
lib/cheroot/__init__.py Normal file
View File

@@ -0,0 +1,15 @@
"""High-performance, pure-Python HTTP server used by CherryPy."""
from __future__ import absolute_import, division, print_function
__metaclass__ = type
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution('cheroot').version
except Exception:
__version__ = 'unknown'