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

Move some static config to setup.cfg #6570

Merged
merged 1 commit into from Sep 13, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions setup.cfg
Expand Up @@ -34,7 +34,11 @@ project_urls =
Twitter=https://twitter.com/PythonPillow

[options]
packages = PIL
python_requires = >=3.7
include_package_data = True
package_dir =
= src

[options.extras_require]
docs =
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Expand Up @@ -999,9 +999,6 @@ def debug_build():
version=PILLOW_VERSION,
cmdclass={"build_ext": pil_build_ext},
ext_modules=ext_modules,
include_package_data=True,
packages=["PIL"],
package_dir={"": "src"},
zip_safe=not (debug_build() or PLATFORM_MINGW),
)
except RequiredDependencyException as err:
Expand Down