Skip to content

Commit

Permalink
Migrated config to pyproject.toml using jaraco.develop.migrate-config…
Browse files Browse the repository at this point in the history
… and ini2toml.
  • Loading branch information
jaraco committed Apr 18, 2024
1 parent 6673723 commit d34801b
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 59 deletions.
59 changes: 58 additions & 1 deletion pyproject.toml
@@ -1,5 +1,62 @@
[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_metadata"
authors = [
{ name = "Jason R. Coombs", email = "jaraco@jaraco.com" },
]
description = "Read metadata 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>=0.5",
'typing-extensions>=3.6.4; python_version < "3.8"',
]
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/python/importlib_metadata"

[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
'importlib_resources>=1.3; python_version < "3.9"',
"packaging",
"pyfakefs",
"flufl.flake8",
"pytest-perf >= 0.9.2",
"jaraco.test >= 5.4",
]
docs = [
# upstream
"sphinx >= 3.5",
"jaraco.packaging >= 9.3",
"rst.linker >= 1.9",
"furo",
"sphinx-lint",

# tidelift
"jaraco.tidelift >= 1.4",

# local
]
perf = ["ipython"]

[tool.setuptools_scm]
58 changes: 0 additions & 58 deletions setup.cfg

This file was deleted.

0 comments on commit d34801b

Please sign in to comment.