Skip to content

Commit

Permalink
expose __version__ after all
Browse files Browse the repository at this point in the history
  • Loading branch information
slingamn committed Jan 2, 2022
1 parent 70ebf9a commit 9c478fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mureq.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
mureq is a replacement for python-requests, intended to be vendored
in-tree by Linux systems software and other lightweight applications.
This is mureq version 0.1.0.
mureq is copyright 2021 by its contributors and is released under the
0BSD ("zero-clause BSD") license.
"""
Expand All @@ -16,6 +14,8 @@
import urllib.parse
from http.client import HTTPConnection, HTTPSConnection, HTTPMessage, HTTPException

__version__ = '0.1.0'

__all__ = ['HTTPException', 'TooManyRedirects', 'Response',
'yield_response', 'request', 'get', 'post', 'head', 'put', 'patch', 'delete']

Expand Down

0 comments on commit 9c478fb

Please sign in to comment.