Changed/renamed/added AUTHORS, CHANGELOG, LICENSE

[ci skip]
This commit is contained in:
Mišo Belica 2013-03-07 16:48:54 +01:00
parent d31d804167
commit c89010221e
6 changed files with 78 additions and 120 deletions

3
AUTHORS.txt Normal file
View File

@ -0,0 +1,3 @@
Rick Harding (original author)
nhnifong
Michal Belica

63
CHANGELOG.rst Normal file
View File

@ -0,0 +1,63 @@
.. :changelog:
Changelog for breadability
==========================
0.1.11 (Dec 12th 2012)
-----------------------
- Add argparse to the install requires for python < 2.7
0.1.10 (Sept 13th 2012)
-----------------------
- Updated scoring bonus and penalty with , and " characters.
0.1.9 (Aug 27nd 2012)
----------------------
- In case of an issue dealing with candidates we need to act like we didn't
find any candidates for the article content. #10
0.1.8 (Aug 27nd 2012)
----------------------
- Add code/tests for an empty document.
- Fixes #9 to handle xml parsing issues.
0.1.7 (July 21nd 2012)
----------------------
- Change the encode 'replace' kwarg into a normal arg for older python
version.
0.1.6 (June 17th 2012)
----------------------
- Fix the link removal, add tests and a place to process other bad links.
0.1.5 (June 16th 2012)
----------------------
- Start to look at removing bad links from content in the conditional cleaning
state. This was really used for the scripting.com site's garbage.
0.1.4 (June 16th 2012)
----------------------
- Add a test generation helper breadability_newtest script.
- Add tests and fixes for the scripting news parse failure.
0.1.3 (June 15th 2012)
----------------------
- Add actual testing of full articles for regression tests.
- Update parser to properly clean after winner doc node is chosen.
0.1.2 (May 28th 2012)
----------------------
- Bugfix: #4 issue with logic of the 100char bonus points in scoring
- Garden with PyLint/PEP8
- Add a bunch of tests to readable/scoring code.
0.1.1 (May 11th 2012)
---------------------
- Fix bugs in scoring to help in getting right content
- Add concept of -d which shows scoring/decisions on nodes
- Update command line client to be able to pipe output to other tools
0.1.0 (May 6th 2012)
--------------------
- Initial release and upload to PyPi

View File

@ -1,2 +0,0 @@
Rick Harding
nhnifong

10
LICENSE.rst Normal file
View File

@ -0,0 +1,10 @@
Copyright (c) 2013, Michal Belica
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -1,2 +1,3 @@
include README.rst
include NEWS.txt
include CHANGELOG.rst
include LICENSE.rst

117
NEWS.txt
View File

@ -1,117 +0,0 @@
.. This is your project NEWS file which will contain the release notes.
.. Example: http://www.python.org/download/releases/2.6/NEWS.txt
.. The content of this file, along with README.rst, will appear in your
.. project's PyPI page.
News
====
0.1.11
-------
* Release date: Dec 12th 2012*
* Add argparse to the install requires for python < 2.7
0.1.10
-------
* Release date: Sept 13th 2012*
* Updated scoring bonus and penalty with , and " characters.
0.1.9
------
* Release date: Aug 27nd 2012*
* In case of an issue dealing with candidates we need to act like we didn't
find any candidates for the article content. #10
0.1.8
------
* Release date: Aug 27nd 2012*
* Add code/tests for an empty document.
* Fixes #9 to handle xml parsing issues.
0.1.7
------
* Release date: July 21nd 2012*
* Change the encode 'replace' kwarg into a normal arg for older python
version.
0.1.6
------
* Release date: June 17th 2012*
* Fix the link removal, add tests and a place to process other bad links.
0.1.5
------
* Release date: June 16th 2012*
* Start to look at removing bad links from content in the conditional cleaning
state. This was really used for the scripting.com site's garbage.
0.1.4
------
* Release date: June 16th 2012*
* Add a test generation helper breadability_newtest script.
* Add tests and fixes for the scripting news parse failure.
0.1.3
------
* Release date: June 15th 2012*
* Add actual testing of full articles for regression tests.
* Update parser to properly clean after winner doc node is chosen.
0.1.2
------
* Release date: May 28th 2012*
* Bugfix: #4 issue with logic of the 100char bonus points in scoring
* Garden with PyLint/PEP8
* Add a bunch of tests to readable/scoring code.
0.1.1
------
* Release date: May 11th 2012*
* Fix bugs in scoring to help in getting right content
* Add concept of -d which shows scoring/decisions on nodes
* Update command line client to be able to pipe output to other tools
0.1.0
---
*Release date: May 6th 2012*
* Initial release and upload to PyPi