-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated config to pyproject.toml using jaraco.develop.migrate-config…
… and ini2toml.
- Loading branch information
Showing
2 changed files
with
56 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,60 @@ | ||
[build-system] | ||
requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"] | ||
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.1"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "importlib_resources" | ||
authors = [ | ||
{ name = "Barry Warsaw", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Jason R. Coombs", email = "[email protected]" }, | ||
] | ||
description = "Read resources from Python packages" | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = ["zipp >= 3.1.0; python_version < '3.10'"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/python/importlib_resources" | ||
Documentation = "https://importlib-resources.readthedocs.io/" | ||
|
||
[project.optional-dependencies] | ||
testing = [ | ||
# upstream | ||
"pytest >= 6", | ||
"pytest-checkdocs >= 2.4", | ||
"pytest-cov", | ||
'pytest-mypy; python_implementation != "PyPy"', # workaround for jaraco/skeleton#22 | ||
"pytest-enabler >= 2.2", | ||
"pytest-ruff >= 0.2.1", | ||
|
||
# local | ||
"zipp >= 3.17", | ||
"jaraco.test >= 5.4", | ||
] | ||
docs = [ | ||
# upstream | ||
"sphinx >= 3.5", | ||
# workaround for sphinx/sphinx-doc#11662 | ||
"sphinx < 7.2.5", | ||
"jaraco.packaging >= 9.3", | ||
"rst.linker >= 1.9", | ||
"furo", | ||
"sphinx-lint", | ||
|
||
# tidelift | ||
"jaraco.tidelift >= 1.4", | ||
|
||
# local | ||
] | ||
|
||
[tool.setuptools_scm] |