forked from miso-belica/jusText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (56 loc) · 1.89 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
# -*- coding: utf8 -*-
"""
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()
with open("LICENSE.rst") as file:
license = file.read()
setup(
name="jusText",
version="2.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/miso-belica/jusText",
license=license,
install_requires=[
"lxml>=2.2.4",
],
tests_require=[
"nose",
"coverage",
],
test_suite="nose.collector",
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.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Pre-processors",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
),
)