Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Remove dead configuration from setup.cfg #2040

Merged
merged 1 commit into from
Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/meta/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@ In BibTeX format:
note = {See https://pypdf.readthedocs.io/en/latest/meta/CONTRIBUTORS.html for all contributors}
}
```

## Which License does pypdf use?

`pypdf` uses the [BSD-3-Clause license](https://en.wikipedia.org/wiki/BSD_licenses#3-clause), see the LICENSE file.
49 changes: 0 additions & 49 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,52 +1,3 @@
[metadata]
name = pypdf

author = Mathieu Fenniak
author_email = [email protected]
maintainer = Martin Thoma
maintainer_email = [email protected]

description = A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
long_description = file: README.md
long_description_content_type = text/markdown

license = BSD-3-Clause

url = https://pypdf.readthedocs.io/en/latest/
project_urls =
Source = https://github.com/py-pdf/pypdf
Bug Reports = https://github.com/py-pdf/pypdf/issues
Changelog = https://pypdf.readthedocs.io/en/latest/meta/CHANGELOG.html
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD 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
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed

[options]
packages =
pypdf
pypdf._codecs
pypdf.generic
python_requires = >=3.6
install_requires =
typing_extensions >= 3.10.0.0; python_version < '3.10'
dataclasses; python_version < '3.7'

[options.extras_require]
full = PyCryptodome; Pillow
crypto = PyCryptodome
image = Pillow

[mutmut]
backup = False
runner = ./mutmut-test.sh
Expand Down