forked from Autonomiq/BoilerPy3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (37 loc) · 1.25 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
from setuptools import setup
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="ripit",
version="1.0.2",
python_requires=">=3.6",
author="sourcepirate",
author_email="plasmashadowx@gmail.com",
license="Apache 2.0",
description="Python port of Boilerpipe, Boilerplate Removal and Fulltext Extraction from HTML pages",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"boilerpipe",
"boilerpy",
"html text extraction",
"text extraction",
"full text extraction",
],
install_requires=["requests>=2.32.3"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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 :: 3.11",
],
test_suite="tests",
url="https://github.com/sourcepirate/ripit",
packages=["ripit"],
)