-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
65 lines (60 loc) · 1.79 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = [
'flit_core>=3.7',
]
build-backend = 'flit_core.buildapi'
[project]
name = 'sphinxcontrib-confluencebuilder'
description = 'Sphinx extension to build Atlassian Confluence Storage Markup'
authors = [
{name = 'Anthony Shaw', email = '[email protected]'},
]
maintainers = [
{name = 'James Knight', email = '[email protected]'},
]
requires-python = '>=3.9'
readme = 'README.md'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Utilities',
]
dependencies = [
'requests>=2.25.0',
'sphinx>=7.2',
]
dynamic = [
'version',
]
[project.urls]
Documentation = 'https://sphinxcontrib-confluencebuilder.readthedocs.io'
Download = 'https://pypi.python.org/pypi/sphinxcontrib-confluencebuilder'
Source = 'https://github.com/sphinx-contrib/confluencebuilder'
[project.scripts]
sphinx-build-confluence = 'sphinxcontrib.confluencebuilder.__main__:main'
[tool.flit.module]
name = 'sphinxcontrib.confluencebuilder'
[tool.flit.sdist]
include = [
'AUTHORS',
'LICENSE',
'LICENSE-3RD-PARTY',
'MANIFEST.in',
]