-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.75 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
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: Bradley M. Bell <[email protected]>
# SPDX-FileContributor: 2020-25 Bradley M. Bell
# ----------------------------------------------------------------------------
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
#
[build-system]
requires = ['setuptools', 'setuptools-scm']
build-backend = 'setuptools.build_meta'
# -----------------------------------------------------------------------------
[project]
name = 'xrst'
version = '2025.1.10'
description = 'Extract RST files from source code and run Sphinx'
readme = 'readme.md'
requires-python = '>=3.8'
keywords = [ 'sphinx', 'rst', 'documentation', 'source' ]
license = { text = 'GPL-3.0-or-later' }
classifiers = [
'Topic :: Documentation :: Sphinx',
'Development Status :: 4 - Beta',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
]
# BEGIN_DEPENDENCIES
dependencies = [
# Always requires to run xrst
'sphinx', 'toml', 'sphinx-copybutton',
# The default spell checker
'pyspellchecker',
# The default theme
'furo',
]
# END_DEPENDENCIES
# -----------------------------------------------------------------------------
[tool.setuptools]
packages = ['xrst']
[project.scripts]
xrst = 'xrst:run_xrst'
[project.urls]
Documenttion = 'https://xrst.readthedocs.io/latest'
ReleaseNotes = 'https://xrst.readthedocs.io/latest/release_notes.html'
Repository = 'https://github.com/bradbell/xrst'
Issues = 'https://github.com/bradbell/xrst/issues'