We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0adaa83 commit cf576e2Copy full SHA for cf576e2
setuptools/tests/test_core_metadata.py
@@ -429,6 +429,20 @@ class TestPEP643:
429
install_requires = requests
430
"""
431
),
432
+ "pyproject.toml": cleandoc(
433
+ """
434
+ [project]
435
+ name = "package"
436
+ version = "0.0.1"
437
+ authors = [
438
+ {name = "Foo Bar", email = "[email protected]"}
439
+ ]
440
+ description = "Short description"
441
+ readme = {text = "Long\\ndescription", content-type = "text/plain"}
442
+ keywords = ["one", "two"]
443
+ dependencies = ["requests"]
444
445
+ ),
446
}
447
448
@pytest.mark.parametrize("file", STATIC_CONFIG.keys())
0 commit comments