-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "sphinxcontrib-phpdomain"
version = "0.15.2"
description="Sphinx extension to enable documenting PHP code"
readme = "README.rst"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.13.5"
authors = [
{name = "Mark Story", email = "mark@mark-story.com"},
{name = "Michael Voříšek", email = "mvorisek@mvorisek.cz"},
]
dependencies = [
"sphinx>=1.3,<10.0",
]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Domain",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/markstory/sphinxcontrib-phpdomain"
Documentation = "https://markstory.github.io/sphinxcontrib-phpdomain/"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["sphinxcontrib*"]
exclude = ["test*"]
[dependency-groups]
dev = [
"build>=1.4.0",
"myst-parser>=5.0.0",
]