Add cheroot-8.2.1
This commit is contained in:
15
lib/cheroot/__init__.py
Normal file
15
lib/cheroot/__init__.py
Normal 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'
|
Reference in New Issue
Block a user