Skip to content
Merged
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
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ description = "Python bindings for the Plex API."
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["plex", "api"]
license = {text = "BSD-3-Clause"}
license = "BSD-3-Clause"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
dependencies = ["requests"]
dynamic = ["version"]
Expand All @@ -27,7 +26,7 @@ Documentation = "https://python-plexapi.readthedocs.io"
version = {attr = "plexapi.const.__version__"}

[build-system]
requires = ["setuptools", "wheel"]
Comment on lines 28 to -30
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Setuptools uses a custom version of wheel so the requirement here isn't used anymore.

requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand Down
Loading