-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1020 Bytes
/
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
#!/usr/bin/env python
#
# Copyright (c) 2011 Jan Pomikalek
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from distutils.core import setup
setup(
name='justext',
version='1.4',
description='Heuristic based boilerplate removal tool',
long_description='''jusText is a tool for removing boilerplate content,
such as navigation links, headers, and footers from HTML pages. It is
designed to preserve mainly text containing full sentences and it is
therefore well suited for creating linguistic resources such as Web
corpora.''',
author='Jan Pomikalek',
author_email='[email protected]',
maintainer='Vit Suchomel',
maintainer_email='[email protected]',
url='http://corpus.tools/wiki/Justext',
license='BSD',
requires=['lxml (>=2.2.4)'],
packages=['justext'],
package_data={'justext': ['stoplists/*.txt']},
scripts=['bin/justext'],
)