|
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 = "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 | + |
5 | 56 | [tool.setuptools_scm]
|
0 commit comments