This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update distribution-related stuff; add license
- Loading branch information
Showing
4 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Vasiliy Faronov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is furnished | ||
to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE SOFTWARE. | ||
|
||
|
||
Portions of RFC documents published by the Internet Engineering Task Force | ||
are included in this software pursuant to section 3 of the IETF Trust | ||
Legal Provisions: http://trustee.ietf.org/documents/IETF-TLP-5_001.pdf | ||
|
||
These portions are copyright (c) IETF Trust and their respective authors. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,11 @@ HTTPolice is a **lint for HTTP requests and responses**. | |
It checks them for conformance to standards and best practices. | ||
|
||
As a command-line tool, it can read `HAR files`__ or raw HTTP/1.x TCP streams. | ||
It can integrate with `mitmproxy`__ for TLS-encrypted and HTTP/2 traffic. | ||
Or you can use it as a Python library (for Python 2.7 and 3.4+). | ||
|
||
__ https://en.wikipedia.org/wiki/.har | ||
|
||
Or you can use it as a Python library (for Python 2.7 and 3.4+). | ||
__ https://mitmproxy.org/ | ||
|
||
HTTPolice was partly inspired by `REDbot`__, another QA tool for the Web. | ||
But the approach is different: instead of actively testing your server, | ||
|
@@ -14,3 +15,7 @@ Thus, it can be used on requests and responses captured | |
from a real process or test suite. | ||
|
||
__ https://redbot.org/ | ||
|
||
HTTPolice is released under the MIT license (see ``LICENSE.txt``). | ||
|
||
Problems, suggestions? Feel free to email the author at [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# -*- coding: utf-8; -*- | ||
|
||
version = '0.1.0.dev1' | ||
version = '0.1.0rc1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
long_description=long_description, | ||
author='Vasiliy Faronov', | ||
author_email='[email protected]', | ||
license='MIT', | ||
install_requires=[ | ||
'setuptools', | ||
'six >=1.10.0', | ||
|
@@ -49,6 +50,7 @@ | |
}, | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
|