-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
68 lines (57 loc) · 1.77 KB
/
setup.cfg
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
68
[metadata]
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
name = pdffile
author = Martin Thoma
author_email = [email protected]
maintainer = Martin Thoma
maintainer_email = [email protected]
version = 0.0.4
description = A modern pure-python library for reading PDF files
long_description = file: README.md
long_description_content_type = text/markdown
keywords = PDF
url = https://github.com/py-pdf/pdf
project_urls =
Changelog = https://github.com/py-pdf/pdf/blob/main/CHANGELOG.md
license = BSD
license_file = LICENSE
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
[options]
python_requires = >=3.7.0
install_requires =
PyPDF2
[tool:pytest]
addopts = --doctest-modules --cov=. --cov-report html:tests/reports/coverage-html --cov-report term-missing --ignore=docs/ --durations=3 --timeout=30
doctest_encoding = utf-8
[mypy]
exclude = build/
ignore_missing_imports = true
strict = true
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = false
show_error_codes = true
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false
[flake8]
ignore = E203, W503, PT007
exclude = build/*
per-file-ignores =
tests/*: ASS001