-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
meta.yaml
59 lines (50 loc) · 1.37 KB
/
meta.yaml
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
{% set version = "20240706" %}
package:
name: pdfminer.six
version: {{ version }}
source:
url: https://pypi.io/packages/source/p/pdfminer.six/pdfminer.six-{{ version }}.tar.gz
sha256: c631a46d5da957a9ffe4460c5dce21e8431dabb615fee5f9f4400603a58d95a6
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
requirements:
host:
- python >=3.8
- pip
- setuptools
- wheel
- setuptools-git-versioning <2
run:
- python >=3.8
- cryptography >=36.0.0
- charset-normalizer >=2.0.0
test:
imports:
- pdfminer
commands:
- pip check
- pdf2txt.py -h
- dumppdf.py -h
- pip check
requires:
- pip
about:
home: https://github.com/pdfminer/pdfminer.six
license_file: LICENSE
license: MIT
license_family: MIT
summary: PDF parser and analyzer
description: |
Pdfminer.six is a community maintained fork of the original PDFMiner.
It is a tool for extracting information from PDF documents.
It focuses on getting and analyzing text data. Pdfminer.six extracts
the text from a page directly from the sourcecode of the PDF.
It can also be used to get the exact location, font or color of the text.
doc_url: https://pdfminersix.readthedocs.io
dev_url: https://github.com/pdfminer/pdfminer.six
extra:
recipe-maintainers:
- pvanheus
- estshorter