Skip to content

Commit d0f7efe

Browse files
committed
Migrated config to pyproject.toml using jaraco.develop.migrate-config and ini2toml.
1 parent 6fa0a7a commit d0f7efe

File tree

2 files changed

+56
-55
lines changed

2 files changed

+56
-55
lines changed

pyproject.toml

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
[build-system]
2-
requires = ["setuptools>=56", "setuptools_scm[toml]>=3.4.1"]
2+
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.1"]
33
build-backend = "setuptools.build_meta"
44

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+
560
[tool.setuptools_scm]

setup.cfg

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)