-
Notifications
You must be signed in to change notification settings - Fork 180
/
setup.py
114 lines (107 loc) · 4.38 KB
/
setup.py
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
#!/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 = []
for d in ['/usr/include/libxml2', '/usr/local/include/libxml2']:
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++"),
]
setup(
name='dragnet',
version='2.0.4',
description='Extract the main article content (and optionally comments) from a web page',
author='Matt Peters, Dan Lecocq',
author_email='[email protected], [email protected]',
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',
],
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),
install_requires=[
'Cython>=0.21.1',
'ftfy>=4.1.0,<5.0.0',
'lxml',
'numpy>=1.11.0',
'scikit-learn>=0.15.2,<0.21.0',
'scipy>=0.17.0',
]
)