forked from miso-belica/jusText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (59 loc) · 2.13 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
# -*- coding: utf-8 -*-
"""
Copyright (c) 2011 Jan Pomikalek
This software is licensed as described in the file LICENSE.rst.
"""
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.rst") as readme:
with open("CHANGELOG.rst") as changelog:
long_description = readme.read() + "\n\n" + changelog.read()
setup(
name="jusText",
version="3.0.0",
description="Heuristic based boilerplate removal tool",
long_description=long_description,
author="Jan Pomikálek",
author_email="[email protected]",
maintainer="Michal Belica",
maintainer_email="[email protected]",
url="https://github.com/AroundtheGlobe/jusText",
download_url='https://www.github.com/AroundtheGlobe/jusText/tarball/master',
license="The BSD 2-Clause License",
install_requires=[
'lxml >= 4.4.2',
'backports.functools-lru-cache; python_version < "3.2"'
],
tests_require=[
"pytest",
"pytest-cov",
"coverage",
],
packages=["justext"],
package_data={"justext": ["stoplists/*.txt"]},
classifiers=(
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"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.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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Pre-processors",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
),
)