Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Feb 19, 2021
1 parent 911966d commit 77cefc2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
## History / Changelog


### 0.8.0
- improved link discovery and handling
- fixes in metadata extraction, feeds and sitemaps processing
- breaking change: the `extract` function now reads target format from `output_format` argument only
- new extraction option: preserve links, CLI options re-ordered
- more opportunistic backup extraction


### 0.7.0
- customizable configuration file to parametrize extraction and downloads
- better handling of feeds and sitemaps
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def get_long_description():
'all': [
'cchardet == 2.1.4; python_version == "3.4"',
'cchardet >= 2.1.7; python_version > "3.4"',
'htmldate[speed]',
'pycld3 >= 0.20',
],
}
Expand Down Expand Up @@ -73,8 +74,7 @@ def get_long_description():
project_urls={
"Documentation": "https://trafilatura.readthedocs.io",
"Source": "https://github.com/adbar/trafilatura",
"Coverage": "https://codecov.io/github/adbar/trafilatura",
"Tracker": "https://github.com/adbar/trafilatura/issues",
"Blog": "https://adrien.barbaresi.eu/blog/tag/trafilatura.html",
},
author='Adrien Barbaresi',
author_email='[email protected]',
Expand All @@ -86,8 +86,8 @@ def get_long_description():
install_requires=[
'chardet == 3.0.4; python_version < "3.6"',
'chardet >= 3.0.4; python_version >= "3.6"',
'courlan >= 0.3.0',
'htmldate >= 0.7.3',
'courlan >= 0.3.1',
'htmldate >= 0.8.0',
'justext >= 2.2.0',
'lxml == 4.3.5; python_version == "3.4"',
'lxml >= 4.6.2; python_version > "3.4"',
Expand Down

0 comments on commit 77cefc2

Please sign in to comment.