|
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_metadata" |
| 7 | +authors = [ |
| 8 | + { name = "Jason R. Coombs", email = "jaraco@jaraco.com" }, |
| 9 | +] |
| 10 | +description = "Read metadata from Python packages" |
| 11 | +readme = "README.rst" |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: Apache Software License", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3 :: Only", |
| 18 | +] |
| 19 | +requires-python = ">=3.8" |
| 20 | +dependencies = [ |
| 21 | + "zipp>=0.5", |
| 22 | + 'typing-extensions>=3.6.4; python_version < "3.8"', |
| 23 | +] |
| 24 | +dynamic = ["version"] |
| 25 | + |
| 26 | +[project.urls] |
| 27 | +Homepage = "https://github.com/python/importlib_metadata" |
| 28 | + |
| 29 | +[project.optional-dependencies] |
| 30 | +testing = [ |
| 31 | + # upstream |
| 32 | + "pytest >= 6", |
| 33 | + "pytest-checkdocs >= 2.4", |
| 34 | + "pytest-cov", |
| 35 | + 'pytest-mypy; python_implementation != "PyPy"', # workaround for jaraco/skeleton#22 |
| 36 | + "pytest-enabler >= 2.2", |
| 37 | + "pytest-ruff >= 0.2.1", |
| 38 | + |
| 39 | + # local |
| 40 | + 'importlib_resources>=1.3; python_version < "3.9"', |
| 41 | + "packaging", |
| 42 | + "pyfakefs", |
| 43 | + "flufl.flake8", |
| 44 | + "pytest-perf >= 0.9.2", |
| 45 | + "jaraco.test >= 5.4", |
| 46 | +] |
| 47 | +docs = [ |
| 48 | + # upstream |
| 49 | + "sphinx >= 3.5", |
| 50 | + "jaraco.packaging >= 9.3", |
| 51 | + "rst.linker >= 1.9", |
| 52 | + "furo", |
| 53 | + "sphinx-lint", |
| 54 | + |
| 55 | + # tidelift |
| 56 | + "jaraco.tidelift >= 1.4", |
| 57 | + |
| 58 | + # local |
| 59 | +] |
| 60 | +perf = ["ipython"] |
| 61 | + |
5 | 62 | [tool.setuptools_scm]
|
0 commit comments