forked from dragnet-org/dragnet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
136 lines (129 loc) · 5.21 KB
/
setup.py
File metadata and controls
136 lines (129 loc) · 5.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env python
# Copyright (c) 2012 SEOmoz
#
# 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.
import os.path
import platform
from setuptools import setup
# have to import `Extension` after `setuptools.setup`
from distutils.extension import Extension
import sys
from Cython.Distutils import build_ext
from Cython.Build import cythonize
import lxml
from numpy import get_include
def find_libxml2_include():
include_dirs = []
search_paths = [
'/usr/include/libxml2',
'/usr/local/include/libxml2',
]
if sys.platform == 'darwin':
import subprocess
try:
sdk = subprocess.check_output(
['xcrun', '--show-sdk-path'], text=True
).strip()
search_paths.append(os.path.join(sdk, 'usr', 'include', 'libxml2'))
except Exception:
pass
for prefix in ['/opt/homebrew/opt/libxml2', '/usr/local/opt/libxml2']:
search_paths.append(os.path.join(prefix, 'include', 'libxml2'))
for d in search_paths:
if os.path.exists(os.path.join(d, 'libxml/tree.h')):
include_dirs.append(d)
return include_dirs
# set min MacOS version, if necessary
if sys.platform == 'darwin':
os_version = '.'.join(platform.mac_ver()[0].split('.')[:2])
# this seems to work better than the -mmacosx-version-min flag
os.environ['MACOSX_DEPLOYMENT_TARGET'] = os_version
ext_modules = [
Extension('dragnet.lcs',
sources=["dragnet/lcs.pyx"],
include_dirs=[get_include()],
language="c++"),
Extension('dragnet.blocks',
sources=["dragnet/blocks.pyx"],
include_dirs=(lxml.get_include() + find_libxml2_include()),
language="c++",
libraries=['xml2']),
Extension('dragnet.features._readability',
sources=["dragnet/features/_readability.pyx"],
include_dirs=[get_include()],
extra_compile_args=['-std=c++11'],
language="c++"),
Extension('dragnet.features._kohlschuetter',
sources=["dragnet/features/_kohlschuetter.pyx"],
include_dirs=[get_include()],
language="c++"),
Extension('dragnet.features._weninger',
sources=["dragnet/features/_weninger.pyx"],
include_dirs=[get_include()],
language="c++"),
]
for ext in ext_modules:
if not hasattr(ext, 'extra_compile_args'):
ext.extra_compile_args = []
ext.extra_compile_args.append('-std=c++17')
setup(
name='dragnet',
version='2.1.0',
description='Extract the main article content (and optionally comments) from a web page',
author='Matt Peters, Dan Lecocq',
author_email='matt@moz.com, dan@moz.com',
url='http://github.com/seomoz/dragnet',
license='MIT',
platforms='Posix; MacOS X',
keywords='automatic content extraction, web page dechroming, HTML parsing',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=['dragnet', 'dragnet.features'],
package_dir={'dragnet': 'dragnet', 'dragnet.features': 'dragnet/features'},
package_data={'dragnet': ['pickled_models/*/*']},
cmdclass={'build_ext': build_ext},
ext_modules=cythonize(ext_modules, compiler_directives={'language_level': "2"}),
install_requires=[
'Cython>=3.0.0',
'ftfy>=4.1.0',
'lxml',
'numpy<=1.26.3',
'scikit-learn<=1.2.2',
'scipy>=0.17.0',
]
)