Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Commit

Permalink
Update distribution-related stuff; add license
Browse files Browse the repository at this point in the history
  • Loading branch information
vfaronov committed Apr 25, 2016
1 parent 889672b commit f839fb0
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
28 changes: 28 additions & 0 deletions LICENSE.txt
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.
9 changes: 7 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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].
2 changes: 1 addition & 1 deletion httpolice/__metadata__.py
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'
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
long_description=long_description,
author='Vasiliy Faronov',
author_email='[email protected]',
license='MIT',
install_requires=[
'setuptools',
'six >=1.10.0',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit f839fb0

Please sign in to comment.