Skip to content

Commit 6f1ce0e

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

File tree

2 files changed

+52
-49
lines changed

2 files changed

+52
-49
lines changed

pyproject.toml

+52-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
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 = "jaraco.office"
7+
authors = [
8+
{ name = "Jason R. Coombs", email = "[email protected]" },
9+
]
10+
description = "Utility library for working with MS Office documents"
11+
readme = "README.rst"
12+
classifiers = [
13+
"Development Status :: 5 - Production/Stable",
14+
"Intended Audience :: Developers",
15+
"License :: OSI Approved :: MIT License",
16+
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3 :: Only",
18+
"Operating System :: Microsoft :: Windows",
19+
]
20+
keywords = ["excel office word"]
21+
requires-python = ">=3.8"
22+
dependencies = ["jaraco.path"]
23+
dynamic = ["version"]
24+
25+
[project.optional-dependencies]
26+
testing = [
27+
# upstream
28+
"pytest >= 6, != 8.1.1",
29+
"pytest-checkdocs >= 2.4",
30+
"pytest-cov",
31+
"pytest-mypy",
32+
"pytest-enabler >= 2.2",
33+
"pytest-ruff >= 0.2.1",
34+
35+
# local
36+
'pypiwin32; platform_system == "Windows"',
37+
]
38+
docs = [
39+
# upstream
40+
"sphinx >= 3.5",
41+
"jaraco.packaging >= 9.3",
42+
"rst.linker >= 1.9",
43+
"furo",
44+
"sphinx-lint",
45+
46+
# local
47+
]
48+
49+
[project.urls]
50+
Homepage = "https://github.com/jaraco/jaraco.office"
51+
52+
[project.scripts]
53+
doc-to-pdf = "jaraco.office.word:doc_to_pdf_cmd"
54+
doc-to-pdf-server = "jaraco.office.convert:ConvertServer.start_server"
55+
556
[tool.setuptools_scm]

setup.cfg

-48
This file was deleted.

0 commit comments

Comments
 (0)