Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions scrapely/_htmlpage.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 25 additions & 12 deletions scrapely/extraction/_similarity.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@
extensions = [
Extension("scrapely._htmlpage",
["scrapely/_htmlpage%s" % ext],
include_dirs=include_dirs),
include_dirs=include_dirs,
extra_compile_args=[
'-Wno-deprecated-declarations',
'-Wno-int-conversion']),
Extension("scrapely.extraction._similarity",
["scrapely/extraction/_similarity%s" % ext],
include_dirs=include_dirs),
include_dirs=include_dirs,
extra_compile_args=[
'-Wno-deprecated-declarations',
'-Wno-int-conversion']),
]
if USE_CYTHON and not IS_PYPY:
from Cython.Build import cythonize
Expand All @@ -44,11 +50,11 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing :: Markup :: HTML',
],
Expand Down