Skip to content
Open
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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name = "marshmallow"
version = "4.0.1"
description = "A lightweight library for converting complex datatypes to and from native Python datatypes."
readme = "README.rst"
license = { file = "LICENSE" }
license = "MIT"
license-files = ["LICENSE","AUTHORS.rst"]
Copy link
Member

Choose a reason for hiding this comment

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

Why is AUTHORS included here?

authors = [{ name = "Steven Loria", email = "[email protected]" }]
maintainers = [
{ name = "Steven Loria", email = "[email protected]" },
Expand All @@ -13,7 +14,6 @@ maintainers = [
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Copy link
Member

Choose a reason for hiding this comment

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

is this a deprecated classifier? can you provide a source for this deprecation?

"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down Expand Up @@ -47,7 +47,7 @@ tests = ["pytest", "simplejson"]
dev = ["marshmallow[tests]", "tox", "pre-commit>=3.5,<5.0"]

[build-system]
requires = ["flit_core<4"]
requires = ["flit_core<4","flit_core>=3.12"]
Copy link
Member

Choose a reason for hiding this comment

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

can this be condensed to a single dep? e.g. flip_core>=3.12,<4

build-backend = "flit_core.buildapi"

[tool.flit.sdist]
Expand Down