|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"] |
| 2 | +requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.1"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "importlib_resources" |
| 7 | +authors = [ |
| 8 | + { name = "Barry Warsaw", email = "barry@python.org" }, |
| 9 | +] |
| 10 | +maintainers = [ |
| 11 | + { name = "Jason R. Coombs", email = "jaraco@jaraco.com" }, |
| 12 | +] |
| 13 | +description = "Read resources from Python packages" |
| 14 | +readme = "README.rst" |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: Apache Software License", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3 :: Only", |
| 21 | +] |
| 22 | +requires-python = ">=3.8" |
| 23 | +dependencies = ["zipp >= 3.1.0; python_version < '3.10'"] |
| 24 | +dynamic = ["version"] |
| 25 | + |
| 26 | +[project.urls] |
| 27 | +Homepage = "https://github.com/python/importlib_resources" |
| 28 | +Documentation = "https://importlib-resources.readthedocs.io/" |
| 29 | + |
| 30 | +[project.optional-dependencies] |
| 31 | +testing = [ |
| 32 | + # upstream |
| 33 | + "pytest >= 6", |
| 34 | + "pytest-checkdocs >= 2.4", |
| 35 | + "pytest-cov", |
| 36 | + 'pytest-mypy; python_implementation != "PyPy"', # workaround for jaraco/skeleton#22 |
| 37 | + "pytest-enabler >= 2.2", |
| 38 | + "pytest-ruff >= 0.2.1", |
| 39 | + |
| 40 | + # local |
| 41 | + "zipp >= 3.17", |
| 42 | + "jaraco.test >= 5.4", |
| 43 | +] |
| 44 | +docs = [ |
| 45 | + # upstream |
| 46 | + "sphinx >= 3.5", |
| 47 | + # workaround for sphinx/sphinx-doc#11662 |
| 48 | + "sphinx < 7.2.5", |
| 49 | + "jaraco.packaging >= 9.3", |
| 50 | + "rst.linker >= 1.9", |
| 51 | + "furo", |
| 52 | + "sphinx-lint", |
| 53 | + |
| 54 | + # tidelift |
| 55 | + "jaraco.tidelift >= 1.4", |
| 56 | + |
| 57 | + # local |
| 58 | +] |
| 59 | + |
5 | 60 | [tool.setuptools_scm] |
0 commit comments